Добавлен .pot файл

pull/11/head
Igor Belitskiy 3 years ago
parent e214290f27
commit 7426a6016e

3
.gitignore vendored

@ -1,4 +1,5 @@
ubl-settings-bootloader.glade~
test.cpp
.vscode
ubl-settings-bootloader
ubl-settings-bootloader
ubl-settings-bootloader_ru.po~

@ -49,7 +49,7 @@ SettingsPlug::SettingsPlug(::Window p_socketID, Glib::RefPtr<Gtk::Builder> build
int MainWindow::check_root() {
if (geteuid() != 0) {
//lblMessageSudo->set_text(_("The program must be run with \nsuperuser privileges!"));
//lblMessageSudo->set_text(gettext("The program must be run with \nsuperuser privileges!"));
//mess_sudo->show();
return 1;
}
@ -91,7 +91,7 @@ void MainWindow::settings(){
boxSave->set_sensitive(false);
imgInfo->set("/usr/share/icons/hicolor/scalable/status/ru.ublinux.ubl-settings-bootloader.warning.svg");
info_status_app("boxInfoMessError");
lblWarning->set_text(_("The program must be run as root"));
lblWarning->set_text(gettext("The program must be run as root"));
}
}
@ -196,9 +196,9 @@ void MainWindow::read_file_and_view(string file_name ,Gtk::TreeModel::Row &row,
}
void MainWindow::view_add_colums(Gtk::TreeView &treeView) {
treeView.append_column_editable(_("Active"), m_columns.check_button);
treeView.append_column(_("Option"), m_columns.name);
treeView.append_column(_("Description"), m_columns.description);
treeView.append_column_editable(gettext("Active"), m_columns.check_button);
treeView.append_column(gettext("Option"), m_columns.name);
treeView.append_column(gettext("Description"), m_columns.description);
}
void MainWindow::view_add_cell(Gtk::TreeModel::Row &row, Glib::RefPtr<Gtk::ListStore> list_store_m , std::array<std::vector<std::string>, 5> &arr_view , size_t index) {
@ -208,8 +208,8 @@ void MainWindow::view_add_cell(Gtk::TreeModel::Row &row, Glib::RefPtr<Gtk::ListS
row[m_columns.cmd_set_true] = arr_view[1][index];
row[m_columns.cmd_set_false] = arr_view[2][index];
row[m_columns.check_button] = flag_chb;
row[m_columns.name] = _(arr_view[3][index].c_str());
row[m_columns.description] = _(arr_view[4][index].c_str());
row[m_columns.name] = gettext(arr_view[3][index].c_str());
row[m_columns.description] = gettext(arr_view[4][index].c_str());
@ -276,37 +276,37 @@ void MainWindow::localization(){
time_t now = time(0);
tm *ltm = localtime(&now);
unsigned int year = 1900+ ltm->tm_year;
string str_authors = string(_("Copyright © UBSoft LLC, 2022 - ")) + to_string(year);
string str_authors = string(gettext("Copyright © UBSoft LLC, 2022 - ")) + to_string(year);
aboutWindows->set_copyright(str_authors);
aboutWindows->set_comments(_("ubl-settings-bootloader"));
aboutWindows->set_website(_("https://wiki.ublinux.com"));
aboutWindows->set_version(_(version_application.c_str()));
aboutWindows->set_website_label(_("Project Home Page"));
lblInfoHead->set_text(_("Configuring system boot parameters"));
lblHeaderName->set_text(_("ubl-settings-bootloader"));
aboutWindows->set_comments(_("Setting bootloader"));
aboutWindows->set_website_label(_("Project Home Page"));
lblInfoCommand->set_text(_("Command line parameters:"));
lblInfoCommand1->set_text(_("Command line parameters:"));
lblInfoCommand2->set_text(_("Command line parameters:"));
lblInfoDefaultDonw->set_text(_("Default download"));
lblInfoSeconds->set_text(_("Seconds"));
lblLoadMenu->set_text(_("Download menu"));
lblInfoInputTerminal->set_text(_("Input terminal"));
lblInfoOutputTerminal->set_text(_("Output terminal"));
aboutWindows->set_comments(gettext("ubl-settings-bootloader"));
aboutWindows->set_website(gettext("https://wiki.ublinux.com"));
aboutWindows->set_version(gettext(version_application.c_str()));
aboutWindows->set_website_label(gettext("Project Home Page"));
lblInfoHead->set_text(gettext("Configuring system boot parameters"));
lblHeaderName->set_text(gettext("ubl-settings-bootloader"));
aboutWindows->set_comments(gettext("Setting bootloader"));
aboutWindows->set_website_label(gettext("Project Home Page"));
lblInfoCommand->set_text(gettext("Command line parameters:"));
lblInfoCommand1->set_text(gettext("Command line parameters:"));
lblInfoCommand2->set_text(gettext("Command line parameters:"));
lblInfoDefaultDonw->set_text(gettext("Default download"));
lblInfoSeconds->set_text(gettext("Seconds"));
lblLoadMenu->set_text(gettext("Download menu"));
lblInfoInputTerminal->set_text(gettext("Input terminal"));
lblInfoOutputTerminal->set_text(gettext("Output terminal"));
chbLoadVariantSelectionTimer->set_label(_("Load variant selection timer"));
chbLastSelectionWillBecome->set_label(_("The last selection will become the default boot choice"));
btnSynopsis->set_label(_("Help"));
btnAbout->set_label(_("About"));
btnSaveLocalGlob->set_label(_("Save to global and local configuration"));
btnSaveLocal->set_label(_("Save local configuration"));
btnSaveGlob->set_label(_("Save global configuration"));
btnLoadGlob->set_label(_("Load global configuration"));
btnLoadLocal->set_label(_("Load local configuration"));
btnSave->set_label(_("Save"));
btnLoad->set_label(_("Load"));
this->set_title(_("ubl-settings-bootloader"));
chbLoadVariantSelectionTimer->set_label(gettext("Load variant selection timer"));
chbLastSelectionWillBecome->set_label(gettext("The last selection will become the default boot choice"));
btnSynopsis->set_label(gettext("Help"));
btnAbout->set_label(gettext("About"));
btnSaveLocalGlob->set_label(gettext("Save to global and local configuration"));
btnSaveLocal->set_label(gettext("Save local configuration"));
btnSaveGlob->set_label(gettext("Save global configuration"));
btnLoadGlob->set_label(gettext("Load global configuration"));
btnLoadLocal->set_label(gettext("Load local configuration"));
btnSave->set_label(gettext("Save"));
btnLoad->set_label(gettext("Load"));
this->set_title(gettext("ubl-settings-bootloader"));
}
@ -397,7 +397,7 @@ void MainWindow::download_local_cfg() {
void MainWindow::synopsis_show() {
string cmd = "xdg-open " + string(_("https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/")) + app_name;
string cmd = "xdg-open " + string(gettext("https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/")) + app_name;
wrapper_system(cmd, "&");
}
@ -424,23 +424,23 @@ void MainWindow::info_warning_error(int mess) {
index_error = 0;
string mess_error = "";
if (mess == 0) {
mess_error = string(_("Local configuration reading error")) + str_cmd_error;
mess_error = string(gettext("Local configuration reading error")) + str_cmd_error;
lblWarning->set_text(mess_error);
}
else if (mess == 1) {
mess_error = string(_("Global configuration read error")) + str_cmd_error;
mess_error = string(gettext("Global configuration read error")) + str_cmd_error;
lblWarning->set_text(mess_error);
}
else if (mess == 2) {
mess_error = string(_("Local configuration write error")) + str_cmd_error;
mess_error = string(gettext("Local configuration write error")) + str_cmd_error;
lblWarning->set_text(mess_error);
}
else if (mess == 3) {
mess_error = string(_("Global configuration write error")) + str_cmd_error;
mess_error = string(gettext("Global configuration write error")) + str_cmd_error;
lblWarning->set_text(mess_error);
}
else if (mess == 4) {
mess_error = string(_("Error saved local and global configuration")) + str_cmd_error;
mess_error = string(gettext("Error saved local and global configuration")) + str_cmd_error;
lblWarning->set_text(mess_error);
}
str_cmd_error = "";
@ -449,19 +449,19 @@ void MainWindow::info_warning_error(int mess) {
info_status_app("boxInfoMessOK");
imgInfo->set("/usr/share/icons/hicolor/scalable/status/ru.ublinux.ubl-settings-bootloader.checked.svg");
if (mess == 0) {
lblWarning->set_text(_("Local configuration downloaded successfully"));
lblWarning->set_text(gettext("Local configuration downloaded successfully"));
}
else if (mess == 1) {
lblWarning->set_text(_("Global configuration downloaded successfully"));
lblWarning->set_text(gettext("Global configuration downloaded successfully"));
}
else if (mess == 2) {
lblWarning->set_text(_("Local configuration successfully written"));
lblWarning->set_text(gettext("Local configuration successfully written"));
}
else if (mess == 3) {
lblWarning->set_text(_("Global configuration successfully written"));
lblWarning->set_text(gettext("Global configuration successfully written"));
}
else if (mess == 4) {
lblWarning->set_text(_("Successfully saved local and global configuration"));
lblWarning->set_text(gettext("Successfully saved local and global configuration"));
}
}
}
@ -544,7 +544,7 @@ void MainWindow::add_CSS(){
}
void help() {
string version = string(gettext("ubl-settings-datetime version: ")) + version_application + "\n";
string version = string(gettext("ubl-settings-bootloader version: ")) + version_application + "\n";
cout << version.c_str();
string help;
help = "GTK settings bootloader for UBLinux\n\n"

@ -0,0 +1,326 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-27 15:17+0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: source/ubl-settings-bootloader.cc:301
msgid "About"
msgstr ""
#: source/ubl-settings-bootloader.cc:199
msgid "Active"
msgstr ""
#: source/ubl-settings-bootloader.cc:289 source/ubl-settings-bootloader.cc:290
#: source/ubl-settings-bootloader.cc:291
msgid "Command line parameters:"
msgstr ""
#: source/ubl-settings-bootloader.cc:285
msgid "Configuring system boot parameters"
msgstr ""
msgid "Configuring the boot loader settings"
msgstr ""
#: source/ubl-settings-bootloader.cc:279
msgid "Copyright © UBSoft LLC, 2022 - "
msgstr ""
#: source/ubl-settings-bootloader.cc:292
msgid "Default download"
msgstr ""
#: source/ubl-settings-bootloader.cc:201
msgid "Description"
msgstr ""
msgid "Disable ACPI"
msgstr ""
msgid "Disable APIC"
msgstr ""
msgid "Disable GPU power management"
msgstr ""
msgid "Disable Plymouth"
msgstr ""
msgid "Disable kernel selection and loading of video drivers"
msgstr ""
msgid "Disable local APIC"
msgstr ""
#: source/ubl-settings-bootloader.cc:294
msgid "Download menu"
msgstr ""
msgid "Downloading without text messages"
msgstr ""
msgid "Eliminates flickering laptop display on Ultra Voltage processors"
msgstr ""
#: source/ubl-settings-bootloader.cc:443
msgid "Error saved local and global configuration"
msgstr ""
msgid "Forced selection of an Intel sound device driver"
msgstr ""
msgid ""
"GTK settings bootloader for UBLinux\n"
"\n"
"Usage: ubl-settings-bootloader [OPTIONS...]\n"
"Options:\n"
" -h, --help\t Show this help\n"
" -V, --version\t Show package version\n"
msgstr ""
#: source/ubl-settings-bootloader.cc:455
msgid "Global configuration downloaded successfully"
msgstr ""
#: source/ubl-settings-bootloader.cc:431
msgid "Global configuration read error"
msgstr ""
#: source/ubl-settings-bootloader.cc:461
msgid "Global configuration successfully written"
msgstr ""
#: source/ubl-settings-bootloader.cc:439
msgid "Global configuration write error"
msgstr ""
#: source/ubl-settings-bootloader.cc:300
msgid "Help"
msgstr ""
#: source/ubl-settings-bootloader.cc:295
msgid "Input terminal"
msgstr ""
#: source/ubl-settings-bootloader.cc:308
msgid "Load"
msgstr ""
#: source/ubl-settings-bootloader.cc:305
msgid "Load global configuration"
msgstr ""
#: source/ubl-settings-bootloader.cc:306
msgid "Load local configuration"
msgstr ""
#: source/ubl-settings-bootloader.cc:298
msgid "Load variant selection timer"
msgstr ""
#: source/ubl-settings-bootloader.cc:452
msgid "Local configuration downloaded successfully"
msgstr ""
#: source/ubl-settings-bootloader.cc:427
msgid "Local configuration reading error"
msgstr ""
#: source/ubl-settings-bootloader.cc:458
msgid "Local configuration successfully written"
msgstr ""
#: source/ubl-settings-bootloader.cc:435
msgid "Local configuration write error"
msgstr ""
msgid "Maximum performance, power management"
msgstr ""
#: source/ubl-settings-bootloader.cc:341 source/ubl-settings-bootloader.cc:354
#: source/ubl-settings-bootloader.cc:367
msgid "Nothing to save!"
msgstr ""
msgid "Open Firmware Console"
msgstr ""
#: source/ubl-settings-bootloader.cc:200
msgid "Option"
msgstr ""
msgid "Output in graphical mode"
msgstr ""
#: source/ubl-settings-bootloader.cc:296
msgid "Output terminal"
msgstr ""
msgid "PC AT Keyboard (Coreboot)"
msgstr ""
msgid "PC BIOS & EFI console"
msgstr ""
msgid "Parameters passed to the kernel"
msgstr ""
msgid "Prevents the processor from going into a deep sleep state"
msgstr ""
#: source/ubl-settings-bootloader.cc:284 source/ubl-settings-bootloader.cc:288
msgid "Project Home Page"
msgstr ""
#: source/ubl-settings-bootloader.cc:307
msgid "Save"
msgstr ""
#: source/ubl-settings-bootloader.cc:304
msgid "Save global configuration"
msgstr ""
#: source/ubl-settings-bootloader.cc:303
msgid "Save local configuration"
msgstr ""
#: source/ubl-settings-bootloader.cc:302
msgid "Save to global and local configuration"
msgstr ""
#: source/ubl-settings-bootloader.cc:293
msgid "Seconds"
msgstr ""
msgid "Serial terminal"
msgstr ""
#: source/ubl-settings-bootloader.cc:287
msgid "Setting bootloader"
msgstr ""
msgid "Show welcome window"
msgstr ""
msgid "Single User Mode"
msgstr ""
#: source/ubl-settings-bootloader.cc:464
msgid "Successfully saved local and global configuration"
msgstr ""
#: source/ubl-settings-bootloader.cc:299
msgid "The last selection will become the default boot choice"
msgstr ""
#: source/ubl-settings-bootloader.cc:94
msgid "The program must be run as root"
msgstr ""
msgid "UBConfig - Loading"
msgstr ""
msgid "USB Keyboard (HID Boot protocol)"
msgstr ""
msgid "VGA text output (Coreboot)"
msgstr ""
msgid "acpi=off (Disable ACPI)"
msgstr ""
msgid "ahci.mobile_jpm_policy=1 (Maximum performance, power management)"
msgstr ""
msgid "apic (Disable APIC)"
msgstr ""
msgid "at_keyboard (Keyboard PC AT (Coreboot))"
msgstr ""
msgid "console (PC BIOS & console EFI)"
msgstr ""
msgid "gfxterm (Output in graphical mode)"
msgstr ""
#: source/ubl-settings-bootloader.cc:282
msgid "https://wiki.ublinux.com"
msgstr ""
#: source/ubl-settings-bootloader.cc:400
msgid ""
"https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
msgstr ""
msgid "i915.enable_dc=0 (Disable GPU power management)"
msgstr ""
msgid ""
"intel_idle max_cstate=1 (Prevents the processor from going into a deep sleep "
"state)"
msgstr ""
msgid ""
"intel_idle.max_cstate=4 (Eliminates flickering laptop display on processors "
"Ultra Voltage)"
msgstr ""
msgid "no plymouth (Disable Plymouth)"
msgstr ""
msgid "nolapic (Disable local APIC)"
msgstr ""
msgid "nomodeset (Disable kernel selection and loading of video drivers)"
msgstr ""
msgid "ofconsole (Console Open Firmware)"
msgstr ""
msgid "quiet (Downloading without text messages)"
msgstr ""
msgid "serial (Serial terminal)"
msgstr ""
msgid "single (Single User Mode)"
msgstr ""
msgid ""
"snd-intel-dspcfg.dsp_driver=1 (Forced selection of a sound device driver "
"from Intel)"
msgstr ""
msgid "splash (Show welcome window)"
msgstr ""
#: source/ubl-settings-bootloader.cc:281 source/ubl-settings-bootloader.cc:286
#: source/ubl-settings-bootloader.cc:309
msgid "ubl-settings-bootloader"
msgstr ""
#: source/ubl-settings-bootloader.cc:547
msgid "ubl-settings-bootloader version: "
msgstr ""
msgid "usb_keyboard (Keyboard USB Keyboard (protocol HID Boot))"
msgstr ""
msgid "vga_text (Text output VGA (Coreboot))"
msgstr ""

@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: ubl-settings-bootloader 1.0\n"
"Report-Msgid-Bugs-To: info@ublinux.ru\n"
"POT-Creation-Date: 2020-02-22 23:22+0600\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-27 15:17+0600\n"
"PO-Revision-Date: 2020-02-22 23:28+0600\n"
"Last-Translator: ublinux <info@ublinux.ru>\n"
"Language-Team: Russian - UBLinux Team <info@ublinux.ru>\n"
@ -15,18 +15,38 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "ubl-settings-bootloader"
msgstr "Загрузка системы"
msgid "Downloading without text messages"
msgstr "Загрузка без текстовых сообщений"
#: source/ubl-settings-bootloader.cc:301
msgid "About"
msgstr "О программе"
msgid "Show welcome window"
msgstr "Показывать окно приветствия"
#: source/ubl-settings-bootloader.cc:199
msgid "Active"
msgstr "Активно"
msgid "Disable Plymouth"
msgstr "Отключить Plymouth"
#: source/ubl-settings-bootloader.cc:289 source/ubl-settings-bootloader.cc:290
#: source/ubl-settings-bootloader.cc:291
msgid "Command line parameters:"
msgstr "Параметры командной строки:"
#: source/ubl-settings-bootloader.cc:285
msgid "Configuring system boot parameters"
msgstr "Настройка параметров загрузки системы"
msgid "Configuring the boot loader settings"
msgstr "Настройка параметров загрузчика системы"
#: source/ubl-settings-bootloader.cc:279
msgid "Copyright © UBSoft LLC, 2022 - "
msgstr ""
#: source/ubl-settings-bootloader.cc:292
msgid "Default download"
msgstr "Загрузка по умолчанию:"
#: source/ubl-settings-bootloader.cc:201
msgid "Description"
msgstr "Описание"
msgid "Disable ACPI"
msgstr "Отключить ACPI"
@ -34,235 +54,291 @@ msgstr "Отключить ACPI"
msgid "Disable APIC"
msgstr "Отключить APIC"
msgid "Disable local APIC"
msgstr "Отключить локальный APIC"
msgid "Disable GPU power management"
msgstr "Отключить управление питанием графического процессора"
msgid "Single User Mode"
msgstr "Режим одного пользователя"
msgid "Disable Plymouth"
msgstr "Отключить Plymouth"
msgid "Disable kernel selection and loading of video drivers"
msgstr "Отключить выбор и загрузку ядром драйверов видео"
msgid "Disable GPU power management"
msgstr "Отключить управление питанием графического процессора"
msgid "Maximum performance, power management"
msgstr "Максимальная производительность, управление питанием"
msgid "Disable local APIC"
msgstr "Отключить локальный APIC"
msgid "Forced selection of an Intel sound device driver"
msgstr "Принудительный выбор драйвера звукового устройства от Intel"
#: source/ubl-settings-bootloader.cc:294
msgid "Download menu"
msgstr "Меню загрузки"
msgid "Prevents the processor from going into a deep sleep state"
msgstr "Предотвращает переход процессора в состояние глубокого сна"
msgid "Downloading without text messages"
msgstr "Загрузка без текстовых сообщений"
msgid "Eliminates flickering laptop display on Ultra Voltage processors"
msgstr "Устраняет мерцание дисплея ноутбука на процессорах Ultra Voltage"
msgid "PC BIOS & EFI console"
msgstr "PC BIOS & консоль EFI"
#: source/ubl-settings-bootloader.cc:443
#, fuzzy
msgid "Error saved local and global configuration"
msgstr "Успешно записаны локальная и глобальная конфигурация"
msgid "Serial terminal"
msgstr "Последовательный терминал"
msgid "Forced selection of an Intel sound device driver"
msgstr "Принудительный выбор драйвера звукового устройства от Intel"
msgid "Open Firmware Console"
msgstr "Консоль Open Firmware"
msgid ""
"GTK settings bootloader for UBLinux\n"
"\n"
"Usage: ubl-settings-bootloader [OPTIONS...]\n"
"Options:\n"
" -h, --help\t Show this help\n"
" -V, --version\t Show package version\n"
msgstr ""
"GTK-утилита настройки загрузчика для UBLinux\n"
"\n"
"Использование: ubl-settings-bootloader [Параметры приложения...]\n"
"Параметры приложения:\n"
" -h, --help\t Показать параметры справки\n"
" -V, --version\t Показать версию пакета\n"
msgid "PC AT Keyboard (Coreboot)"
msgstr "Клавиатура PC AT (Coreboot)"
#: source/ubl-settings-bootloader.cc:455
msgid "Global configuration downloaded successfully"
msgstr "Успешно загружена глобальная конфигурация"
msgid "USB Keyboard (HID Boot protocol)"
msgstr "Клавиатура USB Keyboard (протокол HID Boot)"
#: source/ubl-settings-bootloader.cc:431
msgid "Global configuration read error"
msgstr "Ошибка чтения глобальной конфигурации"
msgid "Output in graphical mode"
msgstr "Вывод в графическом режиме"
#: source/ubl-settings-bootloader.cc:461
msgid "Global configuration successfully written"
msgstr "Успешно записана глобальная конфигурация"
msgid "VGA text output (Coreboot)"
msgstr "Текстовый вывод VGA (Coreboot)"
#: source/ubl-settings-bootloader.cc:439
msgid "Global configuration write error"
msgstr "Ошибка записи глобальной конфигурации"
msgid "ubl-settings-bootloader version: "
msgstr "ubl-settings-bootloader версия: "
#: source/ubl-settings-bootloader.cc:300
msgid "Help"
msgstr "Справка"
msgid "Active"
msgstr "Активно"
#: source/ubl-settings-bootloader.cc:295
#, fuzzy
msgid "Input terminal"
msgstr "Выходной терминал"
msgid "Option"
msgstr "Опция"
#: source/ubl-settings-bootloader.cc:308
msgid "Load"
msgstr "Загрузить"
msgid "Description"
msgstr "Описание"
#: source/ubl-settings-bootloader.cc:305
msgid "Load global configuration"
msgstr "Загрузить глобальную конфигурацию"
msgid "https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
msgstr "https://wiki.ublinux.ru/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
#: source/ubl-settings-bootloader.cc:306
msgid "Load local configuration"
msgstr "Загрузить локальную конфигурацию"
msgid "Configuring the boot loader settings"
msgstr "Настройка параметров загрузчика системы"
#: source/ubl-settings-bootloader.cc:298
msgid "Load variant selection timer"
msgstr "Таймер выбора варианта загрузки"
msgid "UBConfig - Loading"
msgstr "UBConfig - Загрузка"
#: source/ubl-settings-bootloader.cc:452
msgid "Local configuration downloaded successfully"
msgstr "Успешно загружена локальная конфигурация"
msgid "Configuring system boot parameters"
msgstr "Настройка параметров загрузки системы"
#: source/ubl-settings-bootloader.cc:427
msgid "Local configuration reading error"
msgstr "Ошибка чтения локальной конфигурации"
msgid "Setting bootloader"
msgstr "Настройка загрузчика"
#: source/ubl-settings-bootloader.cc:458
msgid "Local configuration successfully written"
msgstr "Успешно записана локальная конфигурация"
msgid "Project Home Page"
msgstr "Домашняя страница проекта"
#: source/ubl-settings-bootloader.cc:435
msgid "Local configuration write error"
msgstr "Ошибка записи локальной конфигурации"
msgid "Download menu"
msgstr "Меню загрузки"
msgid "Maximum performance, power management"
msgstr "Максимальная производительность, управление питанием"
msgid "Load variant selection timer"
msgstr "Таймер выбора варианта загрузки"
#: source/ubl-settings-bootloader.cc:341 source/ubl-settings-bootloader.cc:354
#: source/ubl-settings-bootloader.cc:367
msgid "Nothing to save!"
msgstr "Нечего сохранять!"
msgid "Seconds"
msgstr "Секунд"
msgid "Open Firmware Console"
msgstr "Консоль Open Firmware"
msgid "Default download"
msgstr "Загрузка по умолчанию:"
#: source/ubl-settings-bootloader.cc:200
msgid "Option"
msgstr "Опция"
msgid "The last selection will become the default boot choice"
msgstr "Последний выбор станет выбором загрузки по умолчанию"
msgid "Output in graphical mode"
msgstr "Вывод в графическом режиме"
#: source/ubl-settings-bootloader.cc:296
msgid "Output terminal"
msgstr "Выходной терминал"
msgid "PC AT Keyboard (Coreboot)"
msgstr "Клавиатура PC AT (Coreboot)"
msgid "PC BIOS & EFI console"
msgstr "PC BIOS & консоль EFI"
msgid "Parameters passed to the kernel"
msgstr "Параметры, передаваемые ядру"
msgid "quiet (Downloading without text messages)"
msgstr "quiet (Загрузка без текстовых сообщений)"
msgid "Prevents the processor from going into a deep sleep state"
msgstr "Предотвращает переход процессора в состояние глубокого сна"
msgid "splash (Show welcome window)"
msgstr "splash (Показать окно приветствия)"
#: source/ubl-settings-bootloader.cc:284 source/ubl-settings-bootloader.cc:288
msgid "Project Home Page"
msgstr "Домашняя страница проекта"
msgid "no plymouth (Disable Plymouth)"
msgstr "no plymouth (Отключить Plymouth"
#: source/ubl-settings-bootloader.cc:307
msgid "Save"
msgstr "Сохранить"
msgid "acpi=off (Disable ACPI)"
msgstr "acpi=off (Отключить ACPI)"
#: source/ubl-settings-bootloader.cc:304
msgid "Save global configuration"
msgstr "Сохранить глобальную конфигурацию"
msgid "apic (Disable APIC)"
msgstr "apic (Отключить APIC)"
#: source/ubl-settings-bootloader.cc:303
msgid "Save local configuration"
msgstr "Сохранить локальную конфигурацию"
msgid "nolapic (Disable local APIC)"
msgstr "nolapic (Отключить локальный APIC)"
#: source/ubl-settings-bootloader.cc:302
msgid "Save to global and local configuration"
msgstr "Сохранить глобальную и локальную конфигурацию"
msgid "single (Single User Mode)"
msgstr "single (Однопользовательский режим)"
#: source/ubl-settings-bootloader.cc:293
msgid "Seconds"
msgstr "Секунд"
msgid "nomodeset (Disable kernel selection and loading of video drivers)"
msgstr "nomodeset (Отключите выбор ядра и загрузку видеодрайверов)"
msgid "Serial terminal"
msgstr "Последовательный терминал"
msgid "i915.enable_dc=0 (Disable GPU power management)"
msgstr "i915.enable_dc=0 (Отключите управление питанием GPU)"
#: source/ubl-settings-bootloader.cc:287
msgid "Setting bootloader"
msgstr "Настройка загрузчика"
msgid "ahci.mobile_jpm_policy=1 (Maximum performance, power management)"
msgstr "ahci.mobile_jpm_policy=1 (Максимальная производительность, управление питанием)"
msgid "Show welcome window"
msgstr "Показывать окно приветствия"
msgid "snd-intel-dspcfg.dsp_driver=1 (Forced selection of a sound device driver from Intel)"
msgstr "snd-intel-dspcfg.dsp_driver=1 (Принудительный выбор драйвера звукового устройства от Intel)"
msgid "Single User Mode"
msgstr "Режим одного пользователя"
msgid "intel_idle max_cstate=1 (Prevents the processor from going into a deep sleep state)"
msgstr "intel_idle max_cstate=1 (Предотвращает переход процессора в состояние глубокого сна)"
#: source/ubl-settings-bootloader.cc:464
msgid "Successfully saved local and global configuration"
msgstr "Успешно записаны локальная и глобальная конфигурация"
msgid "intel_idle.max_cstate=4 (Eliminates flickering laptop display on processors Ultra Voltage)"
msgstr "intel_idle.max_cstate=4 (Устраняет мерцание дисплея ноутбука на процессорах Ultra Voltage)"
#: source/ubl-settings-bootloader.cc:299
msgid "The last selection will become the default boot choice"
msgstr "Последний выбор станет выбором загрузки по умолчанию"
msgid "Command line parameters:"
msgstr "Параметры командной строки:"
#: source/ubl-settings-bootloader.cc:94
msgid "The program must be run as root"
msgstr ""
"Программа должна быть запущена с правами \n"
"суперпользователя!"
msgid "Nothing to save!"
msgstr "Нечего сохранять!"
msgid "UBConfig - Loading"
msgstr "UBConfig - Загрузка"
msgid "serial (Serial terminal)"
msgstr "serial (Последовательный терминал)"
msgid "USB Keyboard (HID Boot protocol)"
msgstr "Клавиатура USB Keyboard (протокол HID Boot)"
msgid "at_keyboard (Keyboard PC AT (Coreboot))"
msgstr "at_keyboard (Клавиатура PC AT (Coreboot))"
msgid "VGA text output (Coreboot)"
msgstr "Текстовый вывод VGA (Coreboot)"
msgid "usb_keyboard (Keyboard USB Keyboard (protocol HID Boot))"
msgstr "usb_keyboard (Клавиатура USB Keyboard (protocol HID Boot))"
msgid "acpi=off (Disable ACPI)"
msgstr "acpi=off (Отключить ACPI)"
msgid "Output terminal"
msgstr "Выходной терминал"
msgid "ahci.mobile_jpm_policy=1 (Maximum performance, power management)"
msgstr ""
"ahci.mobile_jpm_policy=1 (Максимальная производительность, управление "
"питанием)"
msgid "apic (Disable APIC)"
msgstr "apic (Отключить APIC)"
msgid "at_keyboard (Keyboard PC AT (Coreboot))"
msgstr "at_keyboard (Клавиатура PC AT (Coreboot))"
msgid "console (PC BIOS & console EFI)"
msgstr "Консоль (PC BIOS & console EFI)"
msgid "ofconsole (Console Open Firmware)"
msgstr "ofconsole (Консоль Open Firmware)"
msgid "gfxterm (Output in graphical mode)"
msgstr "gfxterm (Вывод в графическом режиме)"
msgid "vga_text (Text output VGA (Coreboot))"
msgstr "vga_text (Текстовый вывод VGA (Coreboot))"
msgid "About"
msgstr "О программе"
msgid "Help"
msgstr "Справка"
msgid "Save to global and local configuration"
msgstr "Сохранить глобальную и локальную конфигурацию"
#: source/ubl-settings-bootloader.cc:282
msgid "https://wiki.ublinux.com"
msgstr ""
msgid "Save global configuration"
msgstr "Сохранить глобальную конфигурацию"
#: source/ubl-settings-bootloader.cc:400
msgid ""
"https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
msgstr ""
"https://wiki.ublinux.ru/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
msgid "Save local configuration"
msgstr "Сохранить локальную конфигурацию"
msgid "i915.enable_dc=0 (Disable GPU power management)"
msgstr "i915.enable_dc=0 (Отключите управление питанием GPU)"
msgid "Load global configuration"
msgstr "Загрузить глобальную конфигурацию"
msgid ""
"intel_idle max_cstate=1 (Prevents the processor from going into a deep sleep "
"state)"
msgstr ""
"intel_idle max_cstate=1 (Предотвращает переход процессора в состояние "
"глубокого сна)"
msgid "Load local configuration"
msgstr "Загрузить локальную конфигурацию"
msgid ""
"intel_idle.max_cstate=4 (Eliminates flickering laptop display on processors "
"Ultra Voltage)"
msgstr ""
"intel_idle.max_cstate=4 (Устраняет мерцание дисплея ноутбука на процессорах "
"Ultra Voltage)"
msgid "Save"
msgstr "Сохранить"
msgid "no plymouth (Disable Plymouth)"
msgstr "no plymouth (Отключить Plymouth"
msgid "Load"
msgstr "Загрузить"
msgid "nolapic (Disable local APIC)"
msgstr "nolapic (Отключить локальный APIC)"
msgid "Local configuration reading error"
msgstr "Ошибка чтения локальной конфигурации"
msgid "nomodeset (Disable kernel selection and loading of video drivers)"
msgstr "nomodeset (Отключите выбор ядра и загрузку видеодрайверов)"
msgid "Local configuration write error"
msgstr "Ошибка записи локальной конфигурации"
msgid "ofconsole (Console Open Firmware)"
msgstr "ofconsole (Консоль Open Firmware)"
msgid "Global configuration read error"
msgstr "Ошибка чтения глобальной конфигурации"
msgid "quiet (Downloading without text messages)"
msgstr "quiet (Загрузка без текстовых сообщений)"
msgid "Global configuration write error"
msgstr "Ошибка записи глобальной конфигурации"
msgid "serial (Serial terminal)"
msgstr "serial (Последовательный терминал)"
msgid "Local configuration downloaded successfully"
msgstr "Успешно загружена локальная конфигурация"
msgid "single (Single User Mode)"
msgstr "single (Однопользовательский режим)"
msgid "Global configuration downloaded successfully"
msgstr "Успешно загружена глобальная конфигурация"
msgid ""
"snd-intel-dspcfg.dsp_driver=1 (Forced selection of a sound device driver "
"from Intel)"
msgstr ""
"snd-intel-dspcfg.dsp_driver=1 (Принудительный выбор драйвера звукового "
"устройства от Intel)"
msgid "Global configuration successfully written"
msgstr "Успешно записана глобальная конфигурация"
msgid "splash (Show welcome window)"
msgstr "splash (Показать окно приветствия)"
msgid "Local configuration successfully written"
msgstr "Успешно записана локальная конфигурация"
#: source/ubl-settings-bootloader.cc:281 source/ubl-settings-bootloader.cc:286
#: source/ubl-settings-bootloader.cc:309
msgid "ubl-settings-bootloader"
msgstr "Загрузка системы"
msgid "Successfully saved local and global configuration"
msgstr "Успешно записаны локальная и глобальная конфигурация"
#: source/ubl-settings-bootloader.cc:547
msgid "ubl-settings-bootloader version: "
msgstr "ubl-settings-bootloader версия: "
msgid "The program must be run as root"
msgstr "Программа должна быть запущена с правами \nсуперпользователя!"
msgid "usb_keyboard (Keyboard USB Keyboard (protocol HID Boot))"
msgstr "usb_keyboard (Клавиатура USB Keyboard (protocol HID Boot))"
msgid ""
"GTK settings bootloader for UBLinux\n\n"
"Usage: ubl-settings-bootloader [OPTIONS...]\n"
"Options:\n"
" -h, --help Show this help\n"
" -V, --version Show package version\n"
msgstr ""
"GTK-утилита настройки загрузчика для UBLinux\n"
"\n"
"Использование: ubl-settings-bootloader [Параметры приложения...]\n"
"Параметры приложения:\n"
" -h, --help\t Показать параметры справки\n"
" -V, --version\t Показать версию пакета\n"
msgid "vga_text (Text output VGA (Coreboot))"
msgstr "vga_text (Текстовый вывод VGA (Coreboot))"

Loading…
Cancel
Save