diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts index 1305808ff41..0a7cda15516 100644 --- a/share/qtcreator/translations/qtcreator_ru.ts +++ b/share/qtcreator/translations/qtcreator_ru.ts @@ -1758,12 +1758,12 @@ Cancelling pending operations... Android::Internal::AndroidServiceWidget::AndroidServiceModel - The name of the class implementing the service - Имя класса, реализующего сервис + The name of the class implementing the service. + Имя класса, реализующего сервис. - Checked if the service is run in an external process - Отмечено, если сервис работает во внешнем процессе + Checked if the service is run in an external process. + Отмечено, если сервис работает во внешнем процессе. The name of the external process. @@ -1772,52 +1772,52 @@ Prefix with : if the process is private, use a lowercase name if the process is Если имя начинается с двоеточия, то процесс приватный, если написано в нижнем регистре, то процесс глобальный. - Checked if the service is in a separate dynamic library - Отмечено, если сервис в отдельной динамической библиотеке + Checked if the service is in a separate dynamic library. + Отмечено, если сервис в отдельной динамической библиотеке. - The name of the separate dynamic library - Имя отдельной динамической библиотеки + The name of the separate dynamic library. + Имя отдельной динамической библиотеки. - The arguments for telling the app to run the service instead of the main activity - Параметры запуска сервиса вместо основной функциональности приложения + The arguments for telling the app to run the service instead of the main activity. + Параметры запуска сервиса вместо основной функциональности приложения. - Service class name - Имя класса сервиса + Service class name. + Имя класса сервиса. - Run in external process - Работа во внешнем процессе + Run in external process. + Работа во внешнем процессе. - Process name - Имя процесса + Process name. + Имя процесса. - Run in external library - Работа во внешней библиотеке + Run in external library. + Работа во внешней библиотеке. - Library name - Имя библиотеки + Library name. + Имя библиотеки. - Service arguments - Параметры сервиса + Service arguments. + Параметры сервиса. - The class name must be set - Должно быть задано имя класса + The class name must be set. + Должно быть задано имя класса. - The process name must be set for a service run in an external process - Имя процесса должно быть задано для сервиса, работающего во внешнем процессе + The process name must be set for a service run in an external process. + Имя процесса должно быть задано для сервиса, работающего во внешнем процессе. - The library name must be set for a service run in an external library - Имя библиотеки должно быть задано для сервиса, работающего во внешней библиотеке + The library name must be set for a service run in an external library. + Имя библиотеки должно быть задано для сервиса, работающего во внешней библиотеке. The service arguments must be set for a service not run in an external library diff --git a/src/plugins/android/androidservicewidget.cpp b/src/plugins/android/androidservicewidget.cpp index f7e1f0c499f..02f5935c608 100644 --- a/src/plugins/android/androidservicewidget.cpp +++ b/src/plugins/android/androidservicewidget.cpp @@ -204,31 +204,31 @@ QVariant AndroidServiceWidget::AndroidServiceModel::headerData(int section, Qt:: { if (role == Qt::ToolTipRole && orientation == Qt::Horizontal) { if (section == 0) - return tr("The name of the class implementing the service"); + return tr("The name of the class implementing the service."); else if (section == 1) - return tr("Checked if the service is run in an external process"); + return tr("Checked if the service is run in an external process."); else if (section == 2) return tr("The name of the external process.\n" "Prefix with : if the process is private, use a lowercase name if the process is global."); else if (section == 3) - return tr("Checked if the service is in a separate dynamic library"); + return tr("Checked if the service is in a separate dynamic library."); else if (section == 4) - return tr("The name of the separate dynamic library"); + return tr("The name of the separate dynamic library."); else if (section == 5) - return tr("The arguments for telling the app to run the service instead of the main activity"); + return tr("The arguments for telling the app to run the service instead of the main activity."); } else if (role == Qt::DisplayRole && orientation == Qt::Horizontal) { if (section == 0) - return tr("Service class name"); + return tr("Service class name."); else if (section == 1) - return tr("Run in external process"); + return tr("Run in external process."); else if (section == 2) - return tr("Process name"); + return tr("Process name."); else if (section == 3) - return tr("Run in external library"); + return tr("Run in external library."); else if (section == 4) - return tr("Library name"); + return tr("Library name."); else if (section == 5) - return tr("Service arguments"); + return tr("Service arguments."); } return {}; } @@ -247,22 +247,22 @@ QVariant AndroidServiceWidget::AndroidServiceModel::data(const QModelIndex &inde if (index.column() == 0) return m_services[index.row()].className(); else if (index.column() == 1) - return tr("Run in external process"); + return tr("Run in external process."); else if (index.column() == 2) return m_services[index.row()].externalProcessName(); else if (index.column() == 3) - return tr("Run in external library"); + return tr("Run in external library."); else if (index.column() == 4) return m_services[index.row()].externalLibraryName(); else if (index.column() == 5) return m_services[index.row()].serviceArguments(); } else if (role == Qt::ToolTipRole) { if (index.column() == 0 && m_services[index.row()].className().isEmpty()) - return tr("The class name must be set"); + return tr("The class name must be set."); else if (index.column() == 2 && m_services[index.row()].isRunInExternalProcess()) - return tr("The process name must be set for a service run in an external process"); + return tr("The process name must be set for a service run in an external process."); else if (index.column() == 4 && m_services[index.row()].isRunInExternalLibrary()) - return tr("The library name must be set for a service run in an external library"); + return tr("The library name must be set for a service run in an external library."); } else if (role == Qt::EditRole) { if (index.column() == 0) return m_services[index.row()].className(); diff --git a/src/plugins/android/androidsettingswidget.ui b/src/plugins/android/androidsettingswidget.ui index 1dd2d8779ac..fcfdc63a1d2 100644 --- a/src/plugins/android/androidsettingswidget.ui +++ b/src/plugins/android/androidsettingswidget.ui @@ -65,7 +65,7 @@ - Force a specific NDK installation to be used by all Android kits.<br/>Note that the forced NDK might not be compatible with all Qt registered versions. + Force a specific NDK installation to be used by all Android kits.<br/>Note that the forced NDK might not be compatible with all registered Qt versions.