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

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

3
.gitignore vendored

@ -1,4 +1,5 @@
ubl-settings-bootloader.glade~ ubl-settings-bootloader.glade~
test.cpp test.cpp
.vscode .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() { int MainWindow::check_root() {
if (geteuid() != 0) { 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(); //mess_sudo->show();
return 1; return 1;
} }
@ -91,7 +91,7 @@ void MainWindow::settings(){
boxSave->set_sensitive(false); boxSave->set_sensitive(false);
imgInfo->set("/usr/share/icons/hicolor/scalable/status/ru.ublinux.ubl-settings-bootloader.warning.svg"); imgInfo->set("/usr/share/icons/hicolor/scalable/status/ru.ublinux.ubl-settings-bootloader.warning.svg");
info_status_app("boxInfoMessError"); 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) { void MainWindow::view_add_colums(Gtk::TreeView &treeView) {
treeView.append_column_editable(_("Active"), m_columns.check_button); treeView.append_column_editable(gettext("Active"), m_columns.check_button);
treeView.append_column(_("Option"), m_columns.name); treeView.append_column(gettext("Option"), m_columns.name);
treeView.append_column(_("Description"), m_columns.description); 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) { 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_true] = arr_view[1][index];
row[m_columns.cmd_set_false] = arr_view[2][index]; row[m_columns.cmd_set_false] = arr_view[2][index];
row[m_columns.check_button] = flag_chb; row[m_columns.check_button] = flag_chb;
row[m_columns.name] = _(arr_view[3][index].c_str()); row[m_columns.name] = gettext(arr_view[3][index].c_str());
row[m_columns.description] = _(arr_view[4][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); time_t now = time(0);
tm *ltm = localtime(&now); tm *ltm = localtime(&now);
unsigned int year = 1900+ ltm->tm_year; 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_copyright(str_authors);
aboutWindows->set_comments(_("ubl-settings-bootloader")); aboutWindows->set_comments(gettext("ubl-settings-bootloader"));
aboutWindows->set_website(_("https://wiki.ublinux.com")); aboutWindows->set_website(gettext("https://wiki.ublinux.com"));
aboutWindows->set_version(_(version_application.c_str())); aboutWindows->set_version(gettext(version_application.c_str()));
aboutWindows->set_website_label(_("Project Home Page")); aboutWindows->set_website_label(gettext("Project Home Page"));
lblInfoHead->set_text(_("Configuring system boot parameters")); lblInfoHead->set_text(gettext("Configuring system boot parameters"));
lblHeaderName->set_text(_("ubl-settings-bootloader")); lblHeaderName->set_text(gettext("ubl-settings-bootloader"));
aboutWindows->set_comments(_("Setting bootloader")); aboutWindows->set_comments(gettext("Setting bootloader"));
aboutWindows->set_website_label(_("Project Home Page")); aboutWindows->set_website_label(gettext("Project Home Page"));
lblInfoCommand->set_text(_("Command line parameters:")); lblInfoCommand->set_text(gettext("Command line parameters:"));
lblInfoCommand1->set_text(_("Command line parameters:")); lblInfoCommand1->set_text(gettext("Command line parameters:"));
lblInfoCommand2->set_text(_("Command line parameters:")); lblInfoCommand2->set_text(gettext("Command line parameters:"));
lblInfoDefaultDonw->set_text(_("Default download")); lblInfoDefaultDonw->set_text(gettext("Default download"));
lblInfoSeconds->set_text(_("Seconds")); lblInfoSeconds->set_text(gettext("Seconds"));
lblLoadMenu->set_text(_("Download menu")); lblLoadMenu->set_text(gettext("Download menu"));
lblInfoInputTerminal->set_text(_("Input terminal")); lblInfoInputTerminal->set_text(gettext("Input terminal"));
lblInfoOutputTerminal->set_text(_("Output terminal")); lblInfoOutputTerminal->set_text(gettext("Output terminal"));
chbLoadVariantSelectionTimer->set_label(_("Load variant selection timer")); chbLoadVariantSelectionTimer->set_label(gettext("Load variant selection timer"));
chbLastSelectionWillBecome->set_label(_("The last selection will become the default boot choice")); chbLastSelectionWillBecome->set_label(gettext("The last selection will become the default boot choice"));
btnSynopsis->set_label(_("Help")); btnSynopsis->set_label(gettext("Help"));
btnAbout->set_label(_("About")); btnAbout->set_label(gettext("About"));
btnSaveLocalGlob->set_label(_("Save to global and local configuration")); btnSaveLocalGlob->set_label(gettext("Save to global and local configuration"));
btnSaveLocal->set_label(_("Save local configuration")); btnSaveLocal->set_label(gettext("Save local configuration"));
btnSaveGlob->set_label(_("Save global configuration")); btnSaveGlob->set_label(gettext("Save global configuration"));
btnLoadGlob->set_label(_("Load global configuration")); btnLoadGlob->set_label(gettext("Load global configuration"));
btnLoadLocal->set_label(_("Load local configuration")); btnLoadLocal->set_label(gettext("Load local configuration"));
btnSave->set_label(_("Save")); btnSave->set_label(gettext("Save"));
btnLoad->set_label(_("Load")); btnLoad->set_label(gettext("Load"));
this->set_title(_("ubl-settings-bootloader")); this->set_title(gettext("ubl-settings-bootloader"));
} }
@ -397,7 +397,7 @@ void MainWindow::download_local_cfg() {
void MainWindow::synopsis_show() { 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, "&"); wrapper_system(cmd, "&");
} }
@ -424,23 +424,23 @@ void MainWindow::info_warning_error(int mess) {
index_error = 0; index_error = 0;
string mess_error = ""; string mess_error = "";
if (mess == 0) { 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); lblWarning->set_text(mess_error);
} }
else if (mess == 1) { 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); lblWarning->set_text(mess_error);
} }
else if (mess == 2) { 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); lblWarning->set_text(mess_error);
} }
else if (mess == 3) { 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); lblWarning->set_text(mess_error);
} }
else if (mess == 4) { 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); lblWarning->set_text(mess_error);
} }
str_cmd_error = ""; str_cmd_error = "";
@ -449,19 +449,19 @@ void MainWindow::info_warning_error(int mess) {
info_status_app("boxInfoMessOK"); info_status_app("boxInfoMessOK");
imgInfo->set("/usr/share/icons/hicolor/scalable/status/ru.ublinux.ubl-settings-bootloader.checked.svg"); imgInfo->set("/usr/share/icons/hicolor/scalable/status/ru.ublinux.ubl-settings-bootloader.checked.svg");
if (mess == 0) { if (mess == 0) {
lblWarning->set_text(_("Local configuration downloaded successfully")); lblWarning->set_text(gettext("Local configuration downloaded successfully"));
} }
else if (mess == 1) { else if (mess == 1) {
lblWarning->set_text(_("Global configuration downloaded successfully")); lblWarning->set_text(gettext("Global configuration downloaded successfully"));
} }
else if (mess == 2) { else if (mess == 2) {
lblWarning->set_text(_("Local configuration successfully written")); lblWarning->set_text(gettext("Local configuration successfully written"));
} }
else if (mess == 3) { else if (mess == 3) {
lblWarning->set_text(_("Global configuration successfully written")); lblWarning->set_text(gettext("Global configuration successfully written"));
} }
else if (mess == 4) { 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() { 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(); cout << version.c_str();
string help; string help;
help = "GTK settings bootloader for UBLinux\n\n" 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 "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ubl-settings-bootloader 1.0\n" "Project-Id-Version: ubl-settings-bootloader 1.0\n"
"Report-Msgid-Bugs-To: info@ublinux.ru\n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-02-22 23:22+0600\n" "POT-Creation-Date: 2023-03-27 15:17+0600\n"
"PO-Revision-Date: 2020-02-22 23:28+0600\n" "PO-Revision-Date: 2020-02-22 23:28+0600\n"
"Last-Translator: ublinux <info@ublinux.ru>\n" "Last-Translator: ublinux <info@ublinux.ru>\n"
"Language-Team: Russian - UBLinux Team <info@ublinux.ru>\n" "Language-Team: Russian - UBLinux Team <info@ublinux.ru>\n"
@ -15,18 +15,38 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
msgid "ubl-settings-bootloader"
msgstr "Загрузка системы"
msgid "Downloading without text messages" #: source/ubl-settings-bootloader.cc:301
msgstr "Загрузка без текстовых сообщений" msgid "About"
msgstr "О программе"
msgid "Show welcome window" #: source/ubl-settings-bootloader.cc:199
msgstr "Показывать окно приветствия" msgid "Active"
msgstr "Активно"
msgid "Disable Plymouth" #: source/ubl-settings-bootloader.cc:289 source/ubl-settings-bootloader.cc:290
msgstr "Отключить Plymouth" #: 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" msgid "Disable ACPI"
msgstr "Отключить ACPI" msgstr "Отключить ACPI"
@ -34,235 +54,291 @@ msgstr "Отключить ACPI"
msgid "Disable APIC" msgid "Disable APIC"
msgstr "Отключить APIC" msgstr "Отключить APIC"
msgid "Disable local APIC" msgid "Disable GPU power management"
msgstr "Отключить локальный APIC" msgstr "Отключить управление питанием графического процессора"
msgid "Single User Mode" msgid "Disable Plymouth"
msgstr "Режим одного пользователя" msgstr "Отключить Plymouth"
msgid "Disable kernel selection and loading of video drivers" msgid "Disable kernel selection and loading of video drivers"
msgstr "Отключить выбор и загрузку ядром драйверов видео" msgstr "Отключить выбор и загрузку ядром драйверов видео"
msgid "Disable GPU power management" msgid "Disable local APIC"
msgstr "Отключить управление питанием графического процессора" msgstr "Отключить локальный APIC"
msgid "Maximum performance, power management"
msgstr "Максимальная производительность, управление питанием"
msgid "Forced selection of an Intel sound device driver" #: source/ubl-settings-bootloader.cc:294
msgstr "Принудительный выбор драйвера звукового устройства от Intel" msgid "Download menu"
msgstr "Меню загрузки"
msgid "Prevents the processor from going into a deep sleep state" msgid "Downloading without text messages"
msgstr "Предотвращает переход процессора в состояние глубокого сна" msgstr "Загрузка без текстовых сообщений"
msgid "Eliminates flickering laptop display on Ultra Voltage processors" msgid "Eliminates flickering laptop display on Ultra Voltage processors"
msgstr "Устраняет мерцание дисплея ноутбука на процессорах Ultra Voltage" msgstr "Устраняет мерцание дисплея ноутбука на процессорах Ultra Voltage"
msgid "PC BIOS & EFI console" #: source/ubl-settings-bootloader.cc:443
msgstr "PC BIOS & консоль EFI" #, fuzzy
msgid "Error saved local and global configuration"
msgstr "Успешно записаны локальная и глобальная конфигурация"
msgid "Serial terminal" msgid "Forced selection of an Intel sound device driver"
msgstr "Последовательный терминал" msgstr "Принудительный выбор драйвера звукового устройства от Intel"
msgid "Open Firmware Console" msgid ""
msgstr "Консоль Open Firmware" "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)" #: source/ubl-settings-bootloader.cc:455
msgstr "Клавиатура PC AT (Coreboot)" msgid "Global configuration downloaded successfully"
msgstr "Успешно загружена глобальная конфигурация"
msgid "USB Keyboard (HID Boot protocol)" #: source/ubl-settings-bootloader.cc:431
msgstr "Клавиатура USB Keyboard (протокол HID Boot)" msgid "Global configuration read error"
msgstr "Ошибка чтения глобальной конфигурации"
msgid "Output in graphical mode" #: source/ubl-settings-bootloader.cc:461
msgstr "Вывод в графическом режиме" msgid "Global configuration successfully written"
msgstr "Успешно записана глобальная конфигурация"
msgid "VGA text output (Coreboot)" #: source/ubl-settings-bootloader.cc:439
msgstr "Текстовый вывод VGA (Coreboot)" msgid "Global configuration write error"
msgstr "Ошибка записи глобальной конфигурации"
msgid "ubl-settings-bootloader version: " #: source/ubl-settings-bootloader.cc:300
msgstr "ubl-settings-bootloader версия: " msgid "Help"
msgstr "Справка"
msgid "Active" #: source/ubl-settings-bootloader.cc:295
msgstr "Активно" #, fuzzy
msgid "Input terminal"
msgstr "Выходной терминал"
msgid "Option" #: source/ubl-settings-bootloader.cc:308
msgstr "Опция" msgid "Load"
msgstr "Загрузить"
msgid "Description" #: source/ubl-settings-bootloader.cc:305
msgstr "Описание" msgid "Load global configuration"
msgstr "Загрузить глобальную конфигурацию"
msgid "https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/" #: source/ubl-settings-bootloader.cc:306
msgstr "https://wiki.ublinux.ru/ru/Программное_обеспечениерограммы_и_утилиты/Все/" msgid "Load local configuration"
msgstr "Загрузить локальную конфигурацию"
msgid "Configuring the boot loader settings" #: source/ubl-settings-bootloader.cc:298
msgstr "Настройка параметров загрузчика системы" msgid "Load variant selection timer"
msgstr "Таймер выбора варианта загрузки"
msgid "UBConfig - Loading" #: source/ubl-settings-bootloader.cc:452
msgstr "UBConfig - Загрузка" msgid "Local configuration downloaded successfully"
msgstr "Успешно загружена локальная конфигурация"
msgid "Configuring system boot parameters" #: source/ubl-settings-bootloader.cc:427
msgstr "Настройка параметров загрузки системы" msgid "Local configuration reading error"
msgstr "Ошибка чтения локальной конфигурации"
msgid "Setting bootloader" #: source/ubl-settings-bootloader.cc:458
msgstr "Настройка загрузчика" msgid "Local configuration successfully written"
msgstr "Успешно записана локальная конфигурация"
msgid "Project Home Page" #: source/ubl-settings-bootloader.cc:435
msgstr "Домашняя страница проекта" msgid "Local configuration write error"
msgstr "Ошибка записи локальной конфигурации"
msgid "Download menu" msgid "Maximum performance, power management"
msgstr "Меню загрузки" msgstr "Максимальная производительность, управление питанием"
msgid "Load variant selection timer" #: source/ubl-settings-bootloader.cc:341 source/ubl-settings-bootloader.cc:354
msgstr "Таймер выбора варианта загрузки" #: source/ubl-settings-bootloader.cc:367
msgid "Nothing to save!"
msgstr "Нечего сохранять!"
msgid "Seconds" msgid "Open Firmware Console"
msgstr "Секунд" msgstr "Консоль Open Firmware"
msgid "Default download" #: source/ubl-settings-bootloader.cc:200
msgstr "Загрузка по умолчанию:" msgid "Option"
msgstr "Опция"
msgid "The last selection will become the default boot choice" msgid "Output in graphical mode"
msgstr "Последний выбор станет выбором загрузки по умолчанию" 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" msgid "Parameters passed to the kernel"
msgstr "Параметры, передаваемые ядру" msgstr "Параметры, передаваемые ядру"
msgid "quiet (Downloading without text messages)" msgid "Prevents the processor from going into a deep sleep state"
msgstr "quiet (Загрузка без текстовых сообщений)" msgstr "Предотвращает переход процессора в состояние глубокого сна"
msgid "splash (Show welcome window)" #: source/ubl-settings-bootloader.cc:284 source/ubl-settings-bootloader.cc:288
msgstr "splash (Показать окно приветствия)" msgid "Project Home Page"
msgstr "Домашняя страница проекта"
msgid "no plymouth (Disable Plymouth)" #: source/ubl-settings-bootloader.cc:307
msgstr "no plymouth (Отключить Plymouth" msgid "Save"
msgstr "Сохранить"
msgid "acpi=off (Disable ACPI)" #: source/ubl-settings-bootloader.cc:304
msgstr "acpi=off (Отключить ACPI)" msgid "Save global configuration"
msgstr "Сохранить глобальную конфигурацию"
msgid "apic (Disable APIC)" #: source/ubl-settings-bootloader.cc:303
msgstr "apic (Отключить APIC)" msgid "Save local configuration"
msgstr "Сохранить локальную конфигурацию"
msgid "nolapic (Disable local APIC)" #: source/ubl-settings-bootloader.cc:302
msgstr "nolapic (Отключить локальный APIC)" msgid "Save to global and local configuration"
msgstr "Сохранить глобальную и локальную конфигурацию"
msgid "single (Single User Mode)" #: source/ubl-settings-bootloader.cc:293
msgstr "single (Однопользовательский режим)" msgid "Seconds"
msgstr "Секунд"
msgid "nomodeset (Disable kernel selection and loading of video drivers)" msgid "Serial terminal"
msgstr "nomodeset (Отключите выбор ядра и загрузку видеодрайверов)" msgstr "Последовательный терминал"
msgid "i915.enable_dc=0 (Disable GPU power management)" #: source/ubl-settings-bootloader.cc:287
msgstr "i915.enable_dc=0 (Отключите управление питанием GPU)" msgid "Setting bootloader"
msgstr "Настройка загрузчика"
msgid "ahci.mobile_jpm_policy=1 (Maximum performance, power management)" msgid "Show welcome window"
msgstr "ahci.mobile_jpm_policy=1 (Максимальная производительность, управление питанием)" msgstr "Показывать окно приветствия"
msgid "snd-intel-dspcfg.dsp_driver=1 (Forced selection of a sound device driver from Intel)" msgid "Single User Mode"
msgstr "snd-intel-dspcfg.dsp_driver=1 (Принудительный выбор драйвера звукового устройства от Intel)" msgstr "Режим одного пользователя"
msgid "intel_idle max_cstate=1 (Prevents the processor from going into a deep sleep state)" #: source/ubl-settings-bootloader.cc:464
msgstr "intel_idle max_cstate=1 (Предотвращает переход процессора в состояние глубокого сна)" msgid "Successfully saved local and global configuration"
msgstr "Успешно записаны локальная и глобальная конфигурация"
msgid "intel_idle.max_cstate=4 (Eliminates flickering laptop display on processors Ultra Voltage)" #: source/ubl-settings-bootloader.cc:299
msgstr "intel_idle.max_cstate=4 (Устраняет мерцание дисплея ноутбука на процессорах Ultra Voltage)" msgid "The last selection will become the default boot choice"
msgstr "Последний выбор станет выбором загрузки по умолчанию"
msgid "Command line parameters:" #: source/ubl-settings-bootloader.cc:94
msgstr "Параметры командной строки:" msgid "The program must be run as root"
msgstr ""
"Программа должна быть запущена с правами \n"
"суперпользователя!"
msgid "Nothing to save!" msgid "UBConfig - Loading"
msgstr "Нечего сохранять!" msgstr "UBConfig - Загрузка"
msgid "serial (Serial terminal)" msgid "USB Keyboard (HID Boot protocol)"
msgstr "serial (Последовательный терминал)" msgstr "Клавиатура USB Keyboard (протокол HID Boot)"
msgid "at_keyboard (Keyboard PC AT (Coreboot))" msgid "VGA text output (Coreboot)"
msgstr "at_keyboard (Клавиатура PC AT (Coreboot))" msgstr "Текстовый вывод VGA (Coreboot)"
msgid "usb_keyboard (Keyboard USB Keyboard (protocol HID Boot))" msgid "acpi=off (Disable ACPI)"
msgstr "usb_keyboard (Клавиатура USB Keyboard (protocol HID Boot))" msgstr "acpi=off (Отключить ACPI)"
msgid "Output terminal" msgid "ahci.mobile_jpm_policy=1 (Maximum performance, power management)"
msgstr "Выходной терминал" 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)" msgid "console (PC BIOS & console EFI)"
msgstr "Консоль (PC BIOS & console EFI)" msgstr "Консоль (PC BIOS & console EFI)"
msgid "ofconsole (Console Open Firmware)"
msgstr "ofconsole (Консоль Open Firmware)"
msgid "gfxterm (Output in graphical mode)" msgid "gfxterm (Output in graphical mode)"
msgstr "gfxterm (Вывод в графическом режиме)" msgstr "gfxterm (Вывод в графическом режиме)"
msgid "vga_text (Text output VGA (Coreboot))" #: source/ubl-settings-bootloader.cc:282
msgstr "vga_text (Текстовый вывод VGA (Coreboot))" msgid "https://wiki.ublinux.com"
msgstr ""
msgid "About"
msgstr "О программе"
msgid "Help"
msgstr "Справка"
msgid "Save to global and local configuration"
msgstr "Сохранить глобальную и локальную конфигурацию"
msgid "Save global configuration" #: source/ubl-settings-bootloader.cc:400
msgstr "Сохранить глобальную конфигурацию" msgid ""
"https://wiki.ublinux.com/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
msgstr ""
"https://wiki.ublinux.ru/ru/Программное_обеспечениерограммы_и_утилиты/Все/"
msgid "Save local configuration" msgid "i915.enable_dc=0 (Disable GPU power management)"
msgstr "Сохранить локальную конфигурацию" msgstr "i915.enable_dc=0 (Отключите управление питанием GPU)"
msgid "Load global configuration" msgid ""
msgstr "Загрузить глобальную конфигурацию" "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" msgid ""
msgstr "Загрузить локальную конфигурацию" "intel_idle.max_cstate=4 (Eliminates flickering laptop display on processors "
"Ultra Voltage)"
msgstr ""
"intel_idle.max_cstate=4 (Устраняет мерцание дисплея ноутбука на процессорах "
"Ultra Voltage)"
msgid "Save" msgid "no plymouth (Disable Plymouth)"
msgstr "Сохранить" msgstr "no plymouth (Отключить Plymouth"
msgid "Load" msgid "nolapic (Disable local APIC)"
msgstr "Загрузить" msgstr "nolapic (Отключить локальный APIC)"
msgid "Local configuration reading error" msgid "nomodeset (Disable kernel selection and loading of video drivers)"
msgstr "Ошибка чтения локальной конфигурации" msgstr "nomodeset (Отключите выбор ядра и загрузку видеодрайверов)"
msgid "Local configuration write error" msgid "ofconsole (Console Open Firmware)"
msgstr "Ошибка записи локальной конфигурации" msgstr "ofconsole (Консоль Open Firmware)"
msgid "Global configuration read error" msgid "quiet (Downloading without text messages)"
msgstr "Ошибка чтения глобальной конфигурации" msgstr "quiet (Загрузка без текстовых сообщений)"
msgid "Global configuration write error" msgid "serial (Serial terminal)"
msgstr "Ошибка записи глобальной конфигурации" msgstr "serial (Последовательный терминал)"
msgid "Local configuration downloaded successfully" msgid "single (Single User Mode)"
msgstr "Успешно загружена локальная конфигурация" msgstr "single (Однопользовательский режим)"
msgid "Global configuration downloaded successfully" msgid ""
msgstr "Успешно загружена глобальная конфигурация" "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" msgid "splash (Show welcome window)"
msgstr "Успешно записана глобальная конфигурация" msgstr "splash (Показать окно приветствия)"
msgid "Local configuration successfully written" #: source/ubl-settings-bootloader.cc:281 source/ubl-settings-bootloader.cc:286
msgstr "Успешно записана локальная конфигурация" #: source/ubl-settings-bootloader.cc:309
msgid "ubl-settings-bootloader"
msgstr "Загрузка системы"
msgid "Successfully saved local and global configuration" #: source/ubl-settings-bootloader.cc:547
msgstr "Успешно записаны локальная и глобальная конфигурация" msgid "ubl-settings-bootloader version: "
msgstr "ubl-settings-bootloader версия: "
msgid "The program must be run as root" msgid "usb_keyboard (Keyboard USB Keyboard (protocol HID Boot))"
msgstr "Программа должна быть запущена с правами \nсуперпользователя!" msgstr "usb_keyboard (Клавиатура USB Keyboard (protocol HID Boot))"
msgid "" msgid "vga_text (Text output VGA (Coreboot))"
"GTK settings bootloader for UBLinux\n\n" msgstr "vga_text (Текстовый вывод VGA (Coreboot))"
"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"

Loading…
Cancel
Save