From 4d41f82cf15fe8c78a0eda7055e3a5f0ab62e137 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 19 Sep 2020 13:46:15 +0200 Subject: [PATCH 01/18] Satisfy linter --- src/Config.vala.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Config.vala.in b/src/Config.vala.in index 184e5218..550688d7 100644 --- a/src/Config.vala.in +++ b/src/Config.vala.in @@ -1,7 +1,7 @@ namespace Build { - public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; - public const string LANG_LIST = "@LANG_LIST@"; - public const string PREFERRED_LANG_LIST = "@PREFERRED_LANG_LIST@"; - public const string XKB_BASE = "@XKB_BASE@"; - public const string ISO_CODES_LOCATION = "@ISO_CODES_LOCATION@"; + public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; + public const string LANG_LIST = "@LANG_LIST@"; + public const string PREFERRED_LANG_LIST = "@PREFERRED_LANG_LIST@"; + public const string XKB_BASE = "@XKB_BASE@"; + public const string ISO_CODES_LOCATION = "@ISO_CODES_LOCATION@"; } From a96ed4a626a9a4a4fb37fcf48814dbff4dcf9f5b Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 19 Sep 2020 13:47:57 +0200 Subject: [PATCH 02/18] Add view to install third party software --- src/MainWindow.vala | 18 ++++++- src/Objects/Configuration.vala | 1 + src/Views/ThirdPartySoftwareView.vala | 76 +++++++++++++++++++++++++++ src/meson.build | 1 + 4 files changed, 94 insertions(+), 2 deletions(-) create mode 100644 src/Views/ThirdPartySoftwareView.vala diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 46037af8..e6735794 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -24,6 +24,7 @@ public class Installer.MainWindow : Gtk.Window { private AccountView account_view; private LanguageView language_view; private KeyboardLayoutView keyboard_layout_view; + private ThirdPartySoftwareView third_party_software_view; public MainWindow () { Object ( @@ -71,7 +72,20 @@ public class Installer.MainWindow : Gtk.Window { stack.add (keyboard_layout_view); stack.visible_child = keyboard_layout_view; - keyboard_layout_view.next_step.connect (() => load_account_view ()); + keyboard_layout_view.next_step.connect (() => load_third_party_software_view ()); + } + + private void load_third_party_software_view () { + if (third_party_software_view != null) { + third_party_software_view.destroy (); + } + + third_party_software_view = new ThirdPartySoftwareView (); + third_party_software_view.previous_view = keyboard_layout_view; + stack.add (third_party_software_view); + stack.visible_child = third_party_software_view; + + third_party_software_view.next_step.connect (() => load_account_view ()); } private void load_account_view () { @@ -80,7 +94,7 @@ public class Installer.MainWindow : Gtk.Window { } account_view = new AccountView (); - account_view.previous_view = keyboard_layout_view; + account_view.previous_view = third_party_software_view; stack.add (account_view); stack.visible_child = account_view; diff --git a/src/Objects/Configuration.vala b/src/Objects/Configuration.vala index c5cd722a..0186d6a1 100644 --- a/src/Objects/Configuration.vala +++ b/src/Objects/Configuration.vala @@ -32,4 +32,5 @@ public class Configuration : GLib.Object { public string? country { get; set; default = null; } public string keyboard_layout { get; set; } public string? keyboard_variant { get; set; default = null; } + public bool install_additional_media_formats { get; set; default = false; } } diff --git a/src/Views/ThirdPartySoftwareView.vala b/src/Views/ThirdPartySoftwareView.vala new file mode 100644 index 00000000..4df344de --- /dev/null +++ b/src/Views/ThirdPartySoftwareView.vala @@ -0,0 +1,76 @@ +/*- + * Copyright (c) 2017 elementary LLC. (https://elementary.io) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +public class Installer.ThirdPartySoftwareView : AbstractInstallerView { + construct { + var image = new Gtk.Image.from_icon_name ("emblem-synchronized", Gtk.IconSize.DIALOG); + image.valign = Gtk.Align.END; + + var title_label = new Gtk.Label (_("Third Party Software")); + title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); + title_label.valign = Gtk.Align.START; + + var form_grid = new Gtk.Grid (); + form_grid.row_spacing = 3; + form_grid.valign = Gtk.Align.CENTER; + form_grid.vexpand = true; + + var additional_media_formats_name_label = new Gtk.Label ("Install additional media formats"); + additional_media_formats_name_label.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL); + additional_media_formats_name_label.halign = Gtk.Align.START; + additional_media_formats_name_label.hexpand = true; + + var additional_media_formats_description_label = new Gtk.Label (_("This software is subject to license terms included with its documentation. Some is propietary.")); + additional_media_formats_description_label.wrap = true; + additional_media_formats_description_label.xalign = 0; + + var additional_media_formats_switch = new Gtk.Switch (); + additional_media_formats_switch.valign = Gtk.Align.CENTER; + + unowned Configuration configuration = Configuration.get_default (); + configuration.bind_property ("install_additional_media_formats", additional_media_formats_switch, "active", BindingFlags.BIDIRECTIONAL); + + form_grid.attach (additional_media_formats_name_label, 0, 0); + form_grid.attach (additional_media_formats_description_label, 0, 1); + form_grid.attach (additional_media_formats_switch, 1, 0, 1, 2); + + content_area.attach (image, 0, 0, 1, 1); + content_area.attach (title_label, 0, 1, 1, 1); + content_area.attach (form_grid, 1, 0, 1, 2); + + var back_button = new Gtk.Button.with_label (_("Back")); + + var next_button = new Gtk.Button.with_label (_("Select")); + next_button.sensitive = true; + next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); + + action_area.add (back_button); + action_area.add (next_button); + + back_button.clicked.connect (() => ((Gtk.Stack) get_parent ()).visible_child = previous_view); + next_button.clicked.connect (on_next_button_clicked); + + show_all (); + } + + private void on_next_button_clicked () { + unowned Configuration configuration = Configuration.get_default (); + print ("install_additional_media_formats: %s\n", configuration.install_additional_media_formats ? "true" : "false"); + + next_step (); + } +} diff --git a/src/meson.build b/src/meson.build index 3b8297e9..36f473c8 100644 --- a/src/meson.build +++ b/src/meson.build @@ -12,6 +12,7 @@ vala_files = [ 'Views/AccountView.vala', 'Views/KeyboardLayoutView.vala', 'Views/LanguageView.vala', + 'Views/ThirdPartySoftwareView.vala', 'Widgets/LayoutWidget.vala', 'Widgets/VariantWidget.vala' ] From 6fa525dedb45fc18cc3540b54c43d9ef052c1cef Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 19 Sep 2020 14:03:56 +0200 Subject: [PATCH 03/18] Add packages for additional media formats to list --- src/Views/ThirdPartySoftwareView.vala | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Views/ThirdPartySoftwareView.vala b/src/Views/ThirdPartySoftwareView.vala index 4df344de..cc26d8bc 100644 --- a/src/Views/ThirdPartySoftwareView.vala +++ b/src/Views/ThirdPartySoftwareView.vala @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2017 elementary LLC. (https://elementary.io) + * Copyright 2020 elementary, Inc. (https://elementary.io) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,6 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see . + * Authored by: Marius Meisenzahl */ public class Installer.ThirdPartySoftwareView : AbstractInstallerView { @@ -29,7 +30,7 @@ public class Installer.ThirdPartySoftwareView : AbstractInstallerView { form_grid.valign = Gtk.Align.CENTER; form_grid.vexpand = true; - var additional_media_formats_name_label = new Gtk.Label ("Install additional media formats"); + var additional_media_formats_name_label = new Gtk.Label (_("Install additional media formats")); additional_media_formats_name_label.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL); additional_media_formats_name_label.halign = Gtk.Align.START; additional_media_formats_name_label.hexpand = true; @@ -69,7 +70,12 @@ public class Installer.ThirdPartySoftwareView : AbstractInstallerView { private void on_next_button_clicked () { unowned Configuration configuration = Configuration.get_default (); - print ("install_additional_media_formats: %s\n", configuration.install_additional_media_formats ? "true" : "false"); + var additional_packages_to_install = new List (); + if (configuration.install_additional_media_formats) { + additional_packages_to_install.append ("gstreamer1.0-libav"); + additional_packages_to_install.append ("gstreamer1.0-plugins-bad"); + additional_packages_to_install.append ("gstreamer1.0-plugins-ugly"); + } next_step (); } From d690122a41f9ffbc0a1fab873b1ac4f7f62a0c8f Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 19 Sep 2020 15:03:07 +0200 Subject: [PATCH 04/18] Update src/Views/ThirdPartySoftwareView.vala Co-authored-by: Julian Raschke --- src/Views/ThirdPartySoftwareView.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/ThirdPartySoftwareView.vala b/src/Views/ThirdPartySoftwareView.vala index cc26d8bc..cf5a1f1c 100644 --- a/src/Views/ThirdPartySoftwareView.vala +++ b/src/Views/ThirdPartySoftwareView.vala @@ -35,7 +35,7 @@ public class Installer.ThirdPartySoftwareView : AbstractInstallerView { additional_media_formats_name_label.halign = Gtk.Align.START; additional_media_formats_name_label.hexpand = true; - var additional_media_formats_description_label = new Gtk.Label (_("This software is subject to license terms included with its documentation. Some is propietary.")); + var additional_media_formats_description_label = new Gtk.Label (_("This software is subject to license terms included with its documentation. Some is proprietary.")); additional_media_formats_description_label.wrap = true; additional_media_formats_description_label.xalign = 0; From d62529754a8cb1bd3ff7117c75450fb4a1ee17ed Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 19 Sep 2020 15:12:49 +0200 Subject: [PATCH 05/18] Rename to software --- src/MainWindow.vala | 4 +- src/Views/SoftwareView.vala | 82 +++++++++++++++++++++++++++++++++++++ src/meson.build | 2 +- 3 files changed, 85 insertions(+), 3 deletions(-) create mode 100644 src/Views/SoftwareView.vala diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 3f687e64..c987acf6 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -23,7 +23,7 @@ public class Installer.MainWindow : Hdy.Window { private AccountView account_view; private LanguageView language_view; private KeyboardLayoutView keyboard_layout_view; - private ThirdPartySoftwareView third_party_software_view; + private SoftwareView third_party_software_view; public MainWindow () { Object ( @@ -74,7 +74,7 @@ public class Installer.MainWindow : Hdy.Window { third_party_software_view.destroy (); } - third_party_software_view = new ThirdPartySoftwareView (); + third_party_software_view = new SoftwareView (); third_party_software_view.previous_view = keyboard_layout_view; stack.add (third_party_software_view); stack.visible_child = third_party_software_view; diff --git a/src/Views/SoftwareView.vala b/src/Views/SoftwareView.vala new file mode 100644 index 00000000..a6881d56 --- /dev/null +++ b/src/Views/SoftwareView.vala @@ -0,0 +1,82 @@ +/*- + * Copyright 2020 elementary, Inc. (https://elementary.io) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * Authored by: Marius Meisenzahl + */ + +public class Installer.SoftwareView : AbstractInstallerView { + construct { + var image = new Gtk.Image.from_icon_name ("system-software-update", Gtk.IconSize.DIALOG); + image.valign = Gtk.Align.END; + + var title_label = new Gtk.Label (_("Software")); + title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); + title_label.valign = Gtk.Align.START; + + var form_grid = new Gtk.Grid (); + form_grid.row_spacing = 3; + form_grid.valign = Gtk.Align.CENTER; + form_grid.vexpand = true; + + var additional_media_formats_name_label = new Gtk.Label (_("Install additional media formats")); + additional_media_formats_name_label.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL); + additional_media_formats_name_label.halign = Gtk.Align.START; + additional_media_formats_name_label.hexpand = true; + + var additional_media_formats_description_label = new Gtk.Label (_("This software is subject to license terms included with its documentation. Some is propietary.")); + additional_media_formats_description_label.wrap = true; + additional_media_formats_description_label.xalign = 0; + + var additional_media_formats_switch = new Gtk.Switch (); + additional_media_formats_switch.valign = Gtk.Align.CENTER; + + unowned Configuration configuration = Configuration.get_default (); + configuration.bind_property ("install_additional_media_formats", additional_media_formats_switch, "active", BindingFlags.BIDIRECTIONAL); + + form_grid.attach (additional_media_formats_name_label, 0, 0); + form_grid.attach (additional_media_formats_description_label, 0, 1); + form_grid.attach (additional_media_formats_switch, 1, 0, 1, 2); + + content_area.attach (image, 0, 0, 1, 1); + content_area.attach (title_label, 0, 1, 1, 1); + content_area.attach (form_grid, 1, 0, 1, 2); + + var back_button = new Gtk.Button.with_label (_("Back")); + + var next_button = new Gtk.Button.with_label (_("Select")); + next_button.sensitive = true; + next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); + + action_area.add (back_button); + action_area.add (next_button); + + back_button.clicked.connect (() => ((Gtk.Stack) get_parent ()).visible_child = previous_view); + next_button.clicked.connect (on_next_button_clicked); + + show_all (); + } + + private void on_next_button_clicked () { + unowned Configuration configuration = Configuration.get_default (); + var additional_packages_to_install = new List (); + if (configuration.install_additional_media_formats) { + additional_packages_to_install.append ("gstreamer1.0-libav"); + additional_packages_to_install.append ("gstreamer1.0-plugins-bad"); + additional_packages_to_install.append ("gstreamer1.0-plugins-ugly"); + } + + next_step (); + } +} diff --git a/src/meson.build b/src/meson.build index 36f473c8..ce7baaea 100644 --- a/src/meson.build +++ b/src/meson.build @@ -12,7 +12,7 @@ vala_files = [ 'Views/AccountView.vala', 'Views/KeyboardLayoutView.vala', 'Views/LanguageView.vala', - 'Views/ThirdPartySoftwareView.vala', + 'Views/SoftwareView.vala', 'Widgets/LayoutWidget.vala', 'Widgets/VariantWidget.vala' ] From 61dba02c0b253e20718d9eadabd3304071dc806c Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Mon, 21 Sep 2020 17:51:12 +0200 Subject: [PATCH 06/18] Remove unused class --- src/Views/ThirdPartySoftwareView.vala | 82 --------------------------- 1 file changed, 82 deletions(-) delete mode 100644 src/Views/ThirdPartySoftwareView.vala diff --git a/src/Views/ThirdPartySoftwareView.vala b/src/Views/ThirdPartySoftwareView.vala deleted file mode 100644 index cf5a1f1c..00000000 --- a/src/Views/ThirdPartySoftwareView.vala +++ /dev/null @@ -1,82 +0,0 @@ -/*- - * Copyright 2020 elementary, Inc. (https://elementary.io) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * Authored by: Marius Meisenzahl - */ - -public class Installer.ThirdPartySoftwareView : AbstractInstallerView { - construct { - var image = new Gtk.Image.from_icon_name ("emblem-synchronized", Gtk.IconSize.DIALOG); - image.valign = Gtk.Align.END; - - var title_label = new Gtk.Label (_("Third Party Software")); - title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); - title_label.valign = Gtk.Align.START; - - var form_grid = new Gtk.Grid (); - form_grid.row_spacing = 3; - form_grid.valign = Gtk.Align.CENTER; - form_grid.vexpand = true; - - var additional_media_formats_name_label = new Gtk.Label (_("Install additional media formats")); - additional_media_formats_name_label.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL); - additional_media_formats_name_label.halign = Gtk.Align.START; - additional_media_formats_name_label.hexpand = true; - - var additional_media_formats_description_label = new Gtk.Label (_("This software is subject to license terms included with its documentation. Some is proprietary.")); - additional_media_formats_description_label.wrap = true; - additional_media_formats_description_label.xalign = 0; - - var additional_media_formats_switch = new Gtk.Switch (); - additional_media_formats_switch.valign = Gtk.Align.CENTER; - - unowned Configuration configuration = Configuration.get_default (); - configuration.bind_property ("install_additional_media_formats", additional_media_formats_switch, "active", BindingFlags.BIDIRECTIONAL); - - form_grid.attach (additional_media_formats_name_label, 0, 0); - form_grid.attach (additional_media_formats_description_label, 0, 1); - form_grid.attach (additional_media_formats_switch, 1, 0, 1, 2); - - content_area.attach (image, 0, 0, 1, 1); - content_area.attach (title_label, 0, 1, 1, 1); - content_area.attach (form_grid, 1, 0, 1, 2); - - var back_button = new Gtk.Button.with_label (_("Back")); - - var next_button = new Gtk.Button.with_label (_("Select")); - next_button.sensitive = true; - next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); - - action_area.add (back_button); - action_area.add (next_button); - - back_button.clicked.connect (() => ((Gtk.Stack) get_parent ()).visible_child = previous_view); - next_button.clicked.connect (on_next_button_clicked); - - show_all (); - } - - private void on_next_button_clicked () { - unowned Configuration configuration = Configuration.get_default (); - var additional_packages_to_install = new List (); - if (configuration.install_additional_media_formats) { - additional_packages_to_install.append ("gstreamer1.0-libav"); - additional_packages_to_install.append ("gstreamer1.0-plugins-bad"); - additional_packages_to_install.append ("gstreamer1.0-plugins-ugly"); - } - - next_step (); - } -} From 6da68e884c9206fd95ce5653251cc425f8cc96cb Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Mon, 21 Sep 2020 18:04:54 +0200 Subject: [PATCH 07/18] Rearrange views --- src/MainWindow.vala | 49 +++++++++++++++++++++++-------------- src/Views/AccountView.vala | 2 +- src/Views/SoftwareView.vala | 10 +------- 3 files changed, 32 insertions(+), 29 deletions(-) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index c987acf6..659fd24e 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -23,7 +23,7 @@ public class Installer.MainWindow : Hdy.Window { private AccountView account_view; private LanguageView language_view; private KeyboardLayoutView keyboard_layout_view; - private SoftwareView third_party_software_view; + private SoftwareView software_view; public MainWindow () { Object ( @@ -66,20 +66,7 @@ public class Installer.MainWindow : Hdy.Window { stack.add (keyboard_layout_view); stack.visible_child = keyboard_layout_view; - keyboard_layout_view.next_step.connect (() => load_third_party_software_view ()); - } - - private void load_third_party_software_view () { - if (third_party_software_view != null) { - third_party_software_view.destroy (); - } - - third_party_software_view = new SoftwareView (); - third_party_software_view.previous_view = keyboard_layout_view; - stack.add (third_party_software_view); - stack.visible_child = third_party_software_view; - - third_party_software_view.next_step.connect (() => load_account_view ()); + keyboard_layout_view.next_step.connect (() => load_account_view ()); } private void load_account_view () { @@ -88,25 +75,49 @@ public class Installer.MainWindow : Hdy.Window { } account_view = new AccountView (); - account_view.previous_view = third_party_software_view; + account_view.previous_view = keyboard_layout_view; stack.add (account_view); stack.visible_child = account_view; - account_view.next_step.connect (on_finish); + account_view.next_step.connect (() => load_software_view ()); + } + + private void load_software_view () { + if (software_view != null) { + software_view.destroy (); + } + + software_view = new SoftwareView (); + software_view.previous_view = account_view; + stack.add (software_view); + stack.visible_child = software_view; + + software_view.next_step.connect (on_finish); } private void on_finish () { if (account_view.created != null) { - account_view.created.set_language (Configuration.get_default ().lang); + unowned Configuration configuration = Configuration.get_default (); + account_view.created.set_language (configuration.lang); set_keyboard_layout.begin ((obj, res) => { set_keyboard_layout.end (res); destroy (); }); + + var additional_packages_to_install = new List (); + if (configuration.install_additional_media_formats) { + additional_packages_to_install.append ("gstreamer1.0-libav"); + additional_packages_to_install.append ("gstreamer1.0-plugins-bad"); + additional_packages_to_install.append ("gstreamer1.0-plugins-ugly"); + } + + if (additional_packages_to_install.length () > 0) { + // TODO: install additional packages + } } else { destroy (); } - } private async void set_keyboard_layout () { diff --git a/src/Views/AccountView.vala b/src/Views/AccountView.vala index 2eae1509..b0092507 100644 --- a/src/Views/AccountView.vala +++ b/src/Views/AccountView.vala @@ -96,7 +96,7 @@ public class Installer.AccountView : AbstractInstallerView { var back_button = new Gtk.Button.with_label (_("Back")); - finish_button = new Gtk.Button.with_label (_("Finish Setup")); + finish_button = new Gtk.Button.with_label (_("Select")); finish_button.can_default = true; finish_button.sensitive = false; finish_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); diff --git a/src/Views/SoftwareView.vala b/src/Views/SoftwareView.vala index a6881d56..85ed7eac 100644 --- a/src/Views/SoftwareView.vala +++ b/src/Views/SoftwareView.vala @@ -55,7 +55,7 @@ public class Installer.SoftwareView : AbstractInstallerView { var back_button = new Gtk.Button.with_label (_("Back")); - var next_button = new Gtk.Button.with_label (_("Select")); + var next_button = new Gtk.Button.with_label (_("Finish Setup")); next_button.sensitive = true; next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); @@ -69,14 +69,6 @@ public class Installer.SoftwareView : AbstractInstallerView { } private void on_next_button_clicked () { - unowned Configuration configuration = Configuration.get_default (); - var additional_packages_to_install = new List (); - if (configuration.install_additional_media_formats) { - additional_packages_to_install.append ("gstreamer1.0-libav"); - additional_packages_to_install.append ("gstreamer1.0-plugins-bad"); - additional_packages_to_install.append ("gstreamer1.0-plugins-ugly"); - } - next_step (); } } From 2b8233aef81a44d7fd37e9295c4d8fe062379661 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Mon, 21 Sep 2020 18:34:50 +0200 Subject: [PATCH 08/18] Add packagekit as dependency --- README.md | 1 + meson.build | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 375e5b0b..ed3ed039 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ You'll need the following dependencies: * libgtk-3-dev * libhandy-1-dev * libjson-glib-dev +* libpackagekit-glib2-dev * libpwquality-dev * libxml2-dev * libxml2-utils diff --git a/meson.build b/meson.build index 46282626..5eadf66b 100644 --- a/meson.build +++ b/meson.build @@ -18,6 +18,7 @@ handy_dep = dependency('libhandy-1', version: '>=0.90.0') gtk_dep = dependency('gtk+-3.0') handy_dep = dependency('libhandy-1', version: '>= 0.90.0') json_glib_dep = dependency('json-glib-1.0') +packagekit_dep = dependency ('packagekit-glib2') polkit_dep = dependency('polkit-gobject-1') posix_dep = meson.get_compiler('vala').find_library('posix') pwquality_dep = dependency('pwquality') @@ -34,6 +35,7 @@ dependencies = [ gtk_dep, handy_dep, json_glib_dep, + packagekit_dep, polkit_dep, posix_dep, pwquality_dep, From 2d0dbaaf3c968e464f2e8f0515c6b301ed27cc46 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Mon, 21 Sep 2020 18:38:54 +0200 Subject: [PATCH 09/18] Install libpackagekit-glib2-dev for CI job --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e62cc73..b9aa512d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Install Dependencies run: | apt update - apt install -y desktop-file-utils gettext meson libaccountsservice-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac + apt install -y desktop-file-utils gettext meson libaccountsservice-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpackagekit-glib2-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac - name: Build run: | meson build From a0210562d7ddeb5e8077d350feab08bc703268b3 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Mon, 21 Sep 2020 20:09:55 +0200 Subject: [PATCH 10/18] Install additional packages --- meson.build | 6 +++- src/MainWindow.vala | 62 ++++++++++++++++++++++++++++++------- src/Views/ProgressView.vala | 50 ++++++++++++++++++++++++++++++ src/meson.build | 1 + 4 files changed, 106 insertions(+), 13 deletions(-) create mode 100644 src/Views/ProgressView.vala diff --git a/meson.build b/meson.build index 5eadf66b..dca71272 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,10 @@ project('io.elementary.initial-setup', 'vala', 'c') -add_global_arguments('-DGETTEXT_PACKAGE="' + meson.project_name() + '"', language:'c') +add_global_arguments( + '-DGETTEXT_PACKAGE="' + meson.project_name() + '"', + '-DI_KNOW_THE_PACKAGEKIT_GLIB2_API_IS_SUBJECT_TO_CHANGE', + language:'c' +) add_project_arguments(['--vapidir', join_paths(meson.current_source_dir(), 'vapi')], language: 'vala') diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 659fd24e..360ab689 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -24,6 +24,7 @@ public class Installer.MainWindow : Hdy.Window { private LanguageView language_view; private KeyboardLayoutView keyboard_layout_view; private SoftwareView software_view; + private ProgressView progress_view; public MainWindow () { Object ( @@ -96,25 +97,24 @@ public class Installer.MainWindow : Hdy.Window { } private void on_finish () { + progress_view = new ProgressView (); + stack.add (progress_view); + stack.visible_child = progress_view; + if (account_view.created != null) { unowned Configuration configuration = Configuration.get_default (); + progress_view.progressbar_label.label = _("Setting language"); account_view.created.set_language (configuration.lang); + progress_view.progressbar_label.label = _("Setting keyboard layout"); set_keyboard_layout.begin ((obj, res) => { set_keyboard_layout.end (res); - destroy (); + + install_additional_packages.begin ((obj, res) => { + install_additional_packages.end (res); + destroy (); + }); }); - - var additional_packages_to_install = new List (); - if (configuration.install_additional_media_formats) { - additional_packages_to_install.append ("gstreamer1.0-libav"); - additional_packages_to_install.append ("gstreamer1.0-plugins-bad"); - additional_packages_to_install.append ("gstreamer1.0-plugins-ugly"); - } - - if (additional_packages_to_install.length () > 0) { - // TODO: install additional packages - } } else { destroy (); } @@ -148,4 +148,42 @@ public class Installer.MainWindow : Hdy.Window { accounts_service.keyboard_layouts = { layout }; } } + + private async void install_additional_packages () { + unowned Configuration configuration = Configuration.get_default (); + + string[] additional_packages_to_install = {}; + if (configuration.install_additional_media_formats) { + additional_packages_to_install += "gstreamer1.0-libav"; + additional_packages_to_install += "gstreamer1.0-plugins-bad"; + additional_packages_to_install += "gstreamer1.0-plugins-ugly"; + } + + additional_packages_to_install += null; + + if (additional_packages_to_install.length > 0) { + var client = new Pk.Client (); + var transaction_flags = Pk.Bitfield.from_enums (Pk.Filter.NEWEST, Pk.Filter.ARCH); + + yield client.refresh_cache_async (true, null, (progress, status) => { + progress_view.progressbar.fraction = progress.percentage; + }); + + progress_view.progressbar_label.label = _("Refreshing the package cache"); + var results = yield client.resolve_async (transaction_flags, additional_packages_to_install, null, (progress, status) => {}); + var package_array = results.get_package_array (); + + string[] packages_ids = {}; + package_array.foreach ((package) => { + packages_ids += package.package_id; + }); + + packages_ids += null; + + progress_view.progressbar_label.label = _("Installing additional packages"); + yield client.install_packages_async (transaction_flags, packages_ids, null, (progress, status) => { + progress_view.progressbar.fraction = progress.percentage; + }); + } + } } diff --git a/src/Views/ProgressView.vala b/src/Views/ProgressView.vala new file mode 100644 index 00000000..e2a74697 --- /dev/null +++ b/src/Views/ProgressView.vala @@ -0,0 +1,50 @@ +/*- + * Copyright 2020 elementary, Inc. (https://elementary.io) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * Authored by: Marius Meisenzahl + */ + +public class Installer.ProgressView : AbstractInstallerView { + public Gtk.ProgressBar progressbar; + public Gtk.Label progressbar_label; + + construct { + var logo = new Gtk.Image (); + logo.icon_name = "distributor-logo"; + logo.pixel_size = 128; + logo.get_style_context ().add_class ("logo"); + + var logo_stack = new Gtk.Stack (); + logo_stack.transition_type = Gtk.StackTransitionType.OVER_UP_DOWN; + logo_stack.add (logo); + + progressbar_label = new Gtk.Label (null); + progressbar_label.xalign = 0; + progressbar_label.get_style_context ().add_class (Gtk.STYLE_CLASS_DIM_LABEL); + + progressbar = new Gtk.ProgressBar (); + progressbar.hexpand = true; + + content_area.margin_end = 22; + content_area.margin_start = 22; + content_area.attach (logo_stack, 0, 0, 2, 1); + content_area.attach (progressbar_label, 0, 1, 1, 1); + content_area.attach (progressbar, 0, 2, 2, 1); + + get_style_context ().add_class ("progress-view"); + + show_all (); + } +} diff --git a/src/meson.build b/src/meson.build index ce7baaea..e53c1fdc 100644 --- a/src/meson.build +++ b/src/meson.build @@ -12,6 +12,7 @@ vala_files = [ 'Views/AccountView.vala', 'Views/KeyboardLayoutView.vala', 'Views/LanguageView.vala', + 'Views/ProgressView.vala', 'Views/SoftwareView.vala', 'Widgets/LayoutWidget.vala', 'Widgets/VariantWidget.vala' From da6e15e33f5a1a02022d2f8ccb71c1087cf1d805 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Mon, 21 Sep 2020 20:10:48 +0200 Subject: [PATCH 11/18] Satisfy linter --- src/MainWindow.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 360ab689..9c173094 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -109,11 +109,11 @@ public class Installer.MainWindow : Hdy.Window { progress_view.progressbar_label.label = _("Setting keyboard layout"); set_keyboard_layout.begin ((obj, res) => { set_keyboard_layout.end (res); - + install_additional_packages.begin ((obj, res) => { install_additional_packages.end (res); destroy (); - }); + }); }); } else { destroy (); From 776112f133cce5a7571352de54a319984d22fb32 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sun, 17 Oct 2021 13:12:38 +0200 Subject: [PATCH 12/18] Fix merge errors --- src/MainWindow.vala | 10 +++++----- src/Views/SoftwareView.vala | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index f431f673..b7e12008 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -91,17 +91,17 @@ public class Installer.MainWindow : Hdy.Window { } software_view = new SoftwareView (); - software_view.previous_view = account_view; - stack.add (software_view); - stack.visible_child = software_view; + + deck.add (software_view); + deck.visible_child = software_view; software_view.next_step.connect (on_finish); } private void on_finish () { progress_view = new ProgressView (); - stack.add (progress_view); - stack.visible_child = progress_view; + deck.add (progress_view); + deck.visible_child = progress_view; if (account_view.created != null) { unowned Configuration configuration = Configuration.get_default (); diff --git a/src/Views/SoftwareView.vala b/src/Views/SoftwareView.vala index 85ed7eac..af705435 100644 --- a/src/Views/SoftwareView.vala +++ b/src/Views/SoftwareView.vala @@ -62,7 +62,7 @@ public class Installer.SoftwareView : AbstractInstallerView { action_area.add (back_button); action_area.add (next_button); - back_button.clicked.connect (() => ((Gtk.Stack) get_parent ()).visible_child = previous_view); + back_button.clicked.connect (() => ((Hdy.Deck) get_parent ()).navigate (Hdy.NavigationDirection.BACK)); next_button.clicked.connect (on_next_button_clicked); show_all (); From f980bd16f0d189ae47f658032b533917a9833599 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Fri, 6 Jan 2023 15:48:23 +0100 Subject: [PATCH 13/18] Merge branch 'master' into option-to-install-proprietary-codecs --- data/icons/128.svg | 317 ++++++++++++++++++ data/icons/16.svg | 126 +++++++ data/icons/24.svg | 266 +++++++++++++++ data/icons/32.svg | 274 +++++++++++++++ data/icons/48.svg | 217 ++++++++++++ data/icons/64.svg | 290 ++++++++++++++++ ...io.elementary.initial-setup.appdata.xml.in | 64 ++-- data/io.elementary.initial-setup.desktop.in | 2 +- data/meson.build | 15 + meson.build | 6 +- po/POTFILES | 2 +- po/af.po | 165 ++++++--- po/ak.po | 165 ++++++--- po/ar.po | 193 +++++++---- po/az.po | 165 ++++++--- po/be.po | 165 ++++++--- po/bg.po | 165 ++++++--- po/bn.po | 165 ++++++--- po/bs.po | 165 ++++++--- po/ca.po | 200 +++++++---- po/ckb.po | 248 +++++++++----- po/cs.po | 211 ++++++++---- po/cv.po | 165 ++++++--- po/da.po | 187 +++++++---- po/de.po | 204 +++++++---- po/el.po | 165 ++++++--- po/en_AU.po | 165 ++++++--- po/en_CA.po | 165 ++++++--- po/en_GB.po | 199 +++++++---- po/eo.po | 187 +++++++---- po/es.po | 209 ++++++++---- po/et.po | 165 ++++++--- po/eu.po | 165 ++++++--- po/extra/af.po | 65 ++-- po/extra/ak.po | 65 ++-- po/extra/ar.po | 98 ++++-- po/extra/az.po | 70 ++-- po/extra/be.po | 65 ++-- po/extra/bg.po | 70 ++-- po/extra/bn.po | 65 ++-- po/extra/bs.po | 70 ++-- po/extra/ca.po | 97 ++++-- po/extra/ckb.po | 84 +++-- po/extra/cs.po | 98 ++++-- po/extra/cv.po | 65 ++-- po/extra/da.po | 83 +++-- po/extra/de.po | 98 ++++-- po/extra/el.po | 65 ++-- po/extra/en_AU.po | 65 ++-- po/extra/en_CA.po | 65 ++-- po/extra/en_GB.po | 94 ++++-- po/extra/eo.po | 83 +++-- po/extra/es.po | 91 +++-- po/extra/et.po | 65 ++-- po/extra/eu.po | 65 ++-- po/extra/extra.pot | 65 ++-- po/extra/fa.po | 76 +++-- po/extra/fi.po | 78 +++-- po/extra/fr.po | 96 ++++-- po/extra/fr_CA.po | 70 ++-- po/extra/ga.po | 65 ++-- po/extra/gl.po | 77 +++-- po/extra/he.po | 96 ++++-- po/extra/hi.po | 70 ++-- po/extra/hr.po | 65 ++-- po/extra/hu.po | 74 ++-- po/extra/hy.po | 65 ++-- po/extra/id.po | 70 ++-- po/extra/is.po | 65 ++-- po/extra/it.po | 83 +++-- po/extra/ja.po | 100 ++++-- po/extra/jv.po | 65 ++-- po/extra/ka.po | 65 ++-- po/extra/kn.po | 65 ++-- po/extra/ko.po | 100 ++++-- po/extra/ku.po | 70 ++-- po/extra/lb.po | 65 ++-- po/extra/lg.po | 65 ++-- po/extra/lt.po | 77 +++-- po/extra/lv.po | 65 ++-- po/extra/mg.po | 65 ++-- po/extra/mk.po | 65 ++-- po/extra/mn.po | 65 ++-- po/extra/mo.po | 70 ++-- po/extra/mr.po | 83 +++-- po/extra/ms.po | 65 ++-- po/extra/my.po | 65 ++-- po/extra/nb.po | 92 +++-- po/extra/nl.po | 108 ++++-- po/extra/nn.po | 83 +++-- po/extra/pa.po | 65 ++-- po/extra/pl.po | 104 ++++-- po/extra/pt.po | 100 ++++-- po/extra/pt_BR.po | 83 +++-- po/extra/ro.po | 65 ++-- po/extra/ru.po | 102 ++++-- po/extra/sa.po | 65 ++-- po/extra/si.po | 65 ++-- po/extra/sk.po | 98 ++++-- po/extra/sl.po | 83 +++-- po/extra/sma.po | 65 ++-- po/extra/sq.po | 65 ++-- po/extra/sr.po | 83 +++-- po/extra/sv.po | 70 ++-- po/extra/szl.po | 65 ++-- po/extra/ta.po | 65 ++-- po/extra/te.po | 65 ++-- po/extra/th.po | 70 ++-- po/extra/tl.po | 65 ++-- po/extra/tn.po | 65 ++-- po/extra/to.po | 65 ++-- po/extra/tr.po | 104 ++++-- po/extra/ug.po | 65 ++-- po/extra/uk.po | 96 ++++-- po/extra/ur.po | 65 ++-- po/extra/uz.po | 70 ++-- po/extra/vi.po | 65 ++-- po/extra/wa.po | 65 ++-- po/extra/wo.po | 65 ++-- po/extra/xh.po | 65 ++-- po/extra/yi.po | 65 ++-- po/extra/yo.po | 65 ++-- po/extra/za.po | 65 ++-- po/extra/zh.po | 65 ++-- po/extra/zh_CN.po | 98 ++++-- po/extra/zh_HK.po | 65 ++-- po/extra/zh_TW.po | 70 ++-- po/extra/zu.po | 65 ++-- po/fa.po | 196 +++++++---- po/fi.po | 204 +++++++---- po/fr.po | 210 ++++++++---- po/fr_CA.po | 165 ++++++--- po/ga.po | 165 ++++++--- po/gl.po | 187 +++++++---- po/he.po | 198 +++++++---- po/hi.po | 165 ++++++--- po/hr.po | 165 ++++++--- po/hu.po | 201 +++++++---- po/hy.po | 165 ++++++--- po/id.po | 194 +++++++---- po/io.elementary.initial-setup.pot | 165 ++++++--- po/is.po | 165 ++++++--- po/it.po | 189 +++++++---- po/ja.po | 198 +++++++---- po/jv.po | 165 ++++++--- po/ka.po | 165 ++++++--- po/kn.po | 165 ++++++--- po/ko.po | 208 ++++++++---- po/ku.po | 165 ++++++--- po/lb.po | 165 ++++++--- po/lg.po | 165 ++++++--- po/lt.po | 194 +++++++---- po/lv.po | 165 ++++++--- po/mg.po | 165 ++++++--- po/mk.po | 165 ++++++--- po/mn.po | 165 ++++++--- po/mo.po | 165 ++++++--- po/mr.po | 187 +++++++---- po/ms.po | 165 ++++++--- po/my.po | 165 ++++++--- po/nb.po | 203 +++++++---- po/nl.po | 213 ++++++++---- po/nn.po | 189 +++++++---- po/pa.po | 187 +++++++---- po/pl.po | 205 +++++++---- po/pt.po | 206 ++++++++---- po/pt_BR.po | 189 +++++++---- po/ro.po | 165 ++++++--- po/ru.po | 203 +++++++---- po/sa.po | 165 ++++++--- po/si.po | 165 ++++++--- po/sk.po | 208 ++++++++---- po/sl.po | 187 +++++++---- po/sma.po | 165 ++++++--- po/sq.po | 165 ++++++--- po/sr.po | 187 +++++++---- po/sv.po | 165 ++++++--- po/szl.po | 187 +++++++---- po/ta.po | 165 ++++++--- po/te.po | 165 ++++++--- po/th.po | 187 +++++++---- po/tl.po | 165 ++++++--- po/tn.po | 165 ++++++--- po/to.po | 165 ++++++--- po/tr.po | 199 +++++++---- po/ug.po | 165 ++++++--- po/uk.po | 199 +++++++---- po/ur.po | 165 ++++++--- po/uz.po | 189 +++++++---- po/vi.po | 165 ++++++--- po/wa.po | 165 ++++++--- po/wo.po | 165 ++++++--- po/xh.po | 165 ++++++--- po/yi.po | 165 ++++++--- po/yo.po | 165 ++++++--- po/za.po | 165 ++++++--- po/zh.po | 198 +++++++---- po/zh_CN.po | 197 +++++++---- po/zh_HK.po | 165 ++++++--- po/zh_TW.po | 192 +++++++---- po/zu.po | 165 ++++++--- src/Application.vala | 8 +- src/Helpers/AccountsServiceInterface.vala | 1 + src/MainWindow.vala | 109 ++---- src/Objects/Configuration.vala | 1 + src/Utils.vala | 149 +------- src/Views/AbstractInstallerView.vala | 41 ++- src/Views/AccountView.vala | 244 ++++++++++++-- src/Views/KeyboardLayoutView.vala | 29 +- src/Views/LanguageView.vala | 88 ++++- src/Views/NetworkView.vala | 116 +++++++ src/Views/ProgressView.vala | 15 +- src/Views/SoftwareView.vala | 7 +- src/Widgets/LayoutWidget.vala | 52 --- src/meson.build | 2 +- vapi/libgnomekbd.deps | 3 - vapi/libgnomekbd.vapi | 214 ------------ 217 files changed, 18325 insertions(+), 8427 deletions(-) create mode 100644 data/icons/128.svg create mode 100644 data/icons/16.svg create mode 100644 data/icons/24.svg create mode 100644 data/icons/32.svg create mode 100644 data/icons/48.svg create mode 100644 data/icons/64.svg create mode 100644 src/Views/NetworkView.vala delete mode 100644 src/Widgets/LayoutWidget.vala delete mode 100644 vapi/libgnomekbd.deps delete mode 100644 vapi/libgnomekbd.vapi diff --git a/data/icons/128.svg b/data/icons/128.svg new file mode 100644 index 00000000..5817ec2f --- /dev/null +++ b/data/icons/128.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/icons/16.svg b/data/icons/16.svg new file mode 100644 index 00000000..18800c97 --- /dev/null +++ b/data/icons/16.svg @@ -0,0 +1,126 @@ + +image/svg+xml diff --git a/data/icons/24.svg b/data/icons/24.svg new file mode 100644 index 00000000..a31a795e --- /dev/null +++ b/data/icons/24.svg @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/data/icons/32.svg b/data/icons/32.svg new file mode 100644 index 00000000..1407235f --- /dev/null +++ b/data/icons/32.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/icons/48.svg b/data/icons/48.svg new file mode 100644 index 00000000..ced14147 --- /dev/null +++ b/data/icons/48.svg @@ -0,0 +1,217 @@ + +image/svg+xml diff --git a/data/icons/64.svg b/data/icons/64.svg new file mode 100644 index 00000000..5709d9e7 --- /dev/null +++ b/data/icons/64.svg @@ -0,0 +1,290 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/io.elementary.initial-setup.appdata.xml.in b/data/io.elementary.initial-setup.appdata.xml.in index 94cd0a25..cdcdc1d0 100644 --- a/data/io.elementary.initial-setup.appdata.xml.in +++ b/data/io.elementary.initial-setup.appdata.xml.in @@ -23,50 +23,66 @@ io.elementary.initial-setup + - -

Improvements:

-
    -
  • Avoid political naming of certain locales
  • -
  • Updated translations
  • -
-
- + -

New features:

+

Improvements:

    -
  • Confirm and change device name
  • -
  • Two-finger swipe to navigate back
  • +
  • Use larger icons in views
  • +
  • Make window resizable
  • +
  • Show keyboard layouts in a separate window
  • +
  • Allow hyphens in device names
  • +
  • Updated translations
-

Minor updates:

+
+
+ + + +

Improvements:

    -
  • Translation updates
  • +
  • Updated translations
- + + -

Minor updates:

+

Improvements:

    -
  • Set keyboard layout in accountsservice
  • -
  • Add multitouch gestures
  • -
  • Set correct locales
  • -
  • New colorful avatar fallback
  • -
  • Translation updates
  • +
  • Offer to switch to right-click primary mouse button
  • +
  • Suggest connecting to a network
  • +
  • Updated translations
- + + -

Translation updates

+

Improvements:

+
    +
  • Avoid political naming of certain locales
  • +
  • Updated translations
  • +
- + + -

Initial release

+

New features:

+
    +
  • Confirm and change device name
  • +
  • Two-finger swipe to navigate back
  • +
+

Minor updates:

+
    +
  • Translation updates
  • +
+ io.elementary.initial-setup Pantheon diff --git a/data/io.elementary.initial-setup.desktop.in b/data/io.elementary.initial-setup.desktop.in index 692ad99b..1b63dd10 100644 --- a/data/io.elementary.initial-setup.desktop.in +++ b/data/io.elementary.initial-setup.desktop.in @@ -2,7 +2,7 @@ Name=Set up elementary OS Comment=Set up the system Exec=pkexec io.elementary.initial-setup -Icon=system-os-installer +Icon=io.elementary.initial-setup Terminal=false Type=Application StartupNotify=true diff --git a/data/meson.build b/data/meson.build index 2de27c5e..8e697d6b 100644 --- a/data/meson.build +++ b/data/meson.build @@ -26,3 +26,18 @@ validate_desktop_exe = find_program('desktop-file-validate') test ('Validate desktop file', validate_desktop_exe, args: join_paths(meson.current_build_dir (), meson.project_name() + '.desktop') ) + +icon_sizes = ['16', '24', '32', '48', '64', '128'] + +foreach i : icon_sizes + install_data( + join_paths('icons', i + '.svg'), + install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'), + rename: meson.project_name() + '.svg' + ) + install_data( + join_paths('icons', i + '.svg'), + install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps'), + rename: meson.project_name() + '.svg' + ) +endforeach diff --git a/meson.build b/meson.build index 3f4f29b7..7c571d88 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'io.elementary.initial-setup', 'vala', 'c', - version: '6.1.0', + version: '6.2.2', ) add_global_arguments( @@ -18,8 +18,6 @@ i18n = import('i18n') accountservice_dep = dependency('accountsservice') gee_dep = dependency('gee-0.8') glib_dep = dependency('glib-2.0') -gnome_keyboard_dep = dependency('libgnomekbd') -gnome_keyboard_ui_dep = meson.get_compiler('c').find_library('libgnomekbdui') gobject_dep = dependency('gobject-2.0') granite_dep = dependency('granite', version: '>=6.0.0') handy_dep = dependency('libhandy-1', version: '>=0.90.0') @@ -36,8 +34,6 @@ dependencies = [ accountservice_dep, gee_dep, glib_dep, - gnome_keyboard_dep, - gnome_keyboard_ui_dep, gobject_dep, granite_dep, gtk_dep, diff --git a/po/POTFILES b/po/POTFILES index e04222fc..595c6c7e 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -9,5 +9,5 @@ src/Views/AbstractInstallerView.vala src/Views/AccountView.vala src/Views/KeyboardLayoutView.vala src/Views/LanguageView.vala -src/Widgets/LayoutWidget.vala +src/Views/NetworkView.vala src/Widgets/VariantWidget.vala diff --git a/po/af.po b/po/af.po index 61756a22..67e90e01 100644 --- a/po/af.po +++ b/po/af.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-05-01 03:40+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Afrikaans \n" "Language-Team: ak (generated) \n" -"Language-Team: Arabic \n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,43 +15,11 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.4.2\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "أنشئ مستخدماً" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"لم يتمكن برنامج الإعداد الأولي من إنشاء مستخدم. بدونه، لن تتمكن من تسجيل " -"الدخول ومن المحتمل أنك ستحتاج لإعادة تثبيت نظام التشغيل." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "فشل إنشاء المستخدم '%s'" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "ليس هناك صلاحية لإنشاء المستخدم '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "لم يتمكن برنامج الإعداد الأولي من ضبط اسم الجهاز الخاص بك." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "ليس هناك صلاحية لتعيين اسم الجهاز '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "فشل تعيين اسم الجهاز '%s'" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,90 +28,199 @@ msgstr "%s…" msgid "Default" msgstr "الافتراضي" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "أنشئ حساباً" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "الاسم الكامل" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "اسم المستخدم" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "اختر كلمة مرور" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "قم بتأكيد كلمة المرور" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "اسم الجهاز" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "يتم إظهاره للأجهزة الأخرى عند المشاركة مع جهاز بلوتوث أو عبر الشبكة." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "ارجع" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "أنه الإعداد" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "كلمتا المرور غير متطابقتين" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "اسم المستخدم مأخوذ" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "اسم المستخدم يجب أن يحتوي فقط على حروف صغيرة أو أرقام، وبدون فراغات" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"لم يتمكن برنامج الإعداد الأولي من إنشاء مستخدم. بدونه، لن تتمكن من تسجيل " +"الدخول ومن المحتمل أنك ستحتاج لإعادة تثبيت نظام التشغيل." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "لم يتمكن برنامج الإعداد الأولي من ضبط اسم الجهاز الخاص بك." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "اختر تخطيط لوحة المفاتيح" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "اكتب لاختبار تخطيطك" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "أظهر تخطيط لوحة المفاتيح" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "اختر" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "لغة الإدخال" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "اللغات" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "اختر اللغة" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "اللغة المفعلة حالياً" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "ليس هناك صلاحية لتعيين اسم الجهاز '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "فشل تعيين اسم الجهاز '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "فشل إنشاء المستخدم '%s'" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "ليس هناك صلاحية لإنشاء المستخدم '%s'" + #~ msgid "Cancel Installation" #~ msgstr "إلغاء التثبيت" diff --git a/po/az.po b/po/az.po index 96decc49..a3e82b44 100644 --- a/po/az.po +++ b/po/az.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-10-11 19:49+0200\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Sil" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/be.po b/po/be.po index 62e3e822..7f510213 100644 --- a/po/be.po +++ b/po/be.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-10-11 19:51+0200\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Вярнуцца" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/bg.po b/po/bg.po index e6fdc61c..5ffdbc0c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-04-18 00:05+0000\n" "Last-Translator: Alex Skywalker \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" "Language-Team: LANGUAGE \n" @@ -14,42 +14,12 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.0.1\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 #, fuzzy msgid "Create a User" msgstr "Kreiraj račun" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -58,92 +28,179 @@ msgstr "%s…" msgid "Default" msgstr "Zadano" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Kreiraj račun" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Ime i prezime" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Korisničko ime" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Odaberite lozinku" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Potvrdite lozinku" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Nazad" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Završite podešavanje" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 #, fuzzy #| msgid "Keyboard Layout" msgid "Select Keyboard Layout" msgstr "Raspored tastature" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Kucajte da testirate svoj raspored" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Prikaži raspored tastature" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Odaberi" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Jezik unosa" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Jezici" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Odaberite jezik" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Trenutno aktivan jezik" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "Cancel Installation" #~ msgstr "Otkaži instalaciju" diff --git a/po/ca.po b/po/ca.po index 404c1e9c..57cc7a97 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-21 08:45+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-28 14:25+0000\n" "Last-Translator: David M \n" "Language-Team: Catalan \n" @@ -12,46 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Crea un usuari" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"La Configuració inicial no ha pogut crear l'usuari. Sense, no podreu entrar " -"a la sessió i potser hauríeu de reinstal·lar el sistema." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Ha fallat crear l'usuari \"%s\"." - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "No teniu permís per crear l'usuari \"%s\"." - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "La Configuració inicial no ha pogut el nom d'amfitrió." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "No teniu permís per establir el nom d'amfitrió \"%s\"." - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "No es pot establir el nom d'amfitrió \"%s'." - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "Per defecte" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Crea un compte" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Nom complet" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Nom d'usuari" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Trieu una contrasenya" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Confirmeu la contrasenya" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Nom del dispositiu" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -92,62 +60,175 @@ msgstr "" "Visible per a altres dispositius quan es comparteixi, per exemple, per " "Bluetooth o per xarxa." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Enrere" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Acaba la configuració" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Les contrasenyes no coincideixen." -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "El nom d'usuari triat ja està agafat" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "El nom d'usuari només pot contenir lletres en minúscula i números, sense " "espais" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Ha fallat la creació d'un compte per a %s." + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "No s'ha pogut obtenir permís per crear un compte per a %s." + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"La Configuració inicial no ha pogut crear aquest usuari. Sense, no podreu " +"entrar a la sessió i potser hauríeu de reinstal·lar el sistema." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "No s'ha pogut obtenir permís per anomenar aquest dispositiu %s." + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "No es pot anomenar aquest dispositiu %s." + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "La Configuració inicial no ha pogut el nom d'amfitrió." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Seleccioneu la disposició del teclat" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Teclegeu per provar la disposició del teclat." -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Mostra la disposició del teclat" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Selecciona" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Llengua d'entrada" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Llengües" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "S'usa el botó dret del ratolí per fer el clic principal?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"El botó dret del ratolí s'ha usat on s'esperava un clic principal. Podeu " +"triar usar sempre el botó dret del ratolí per fer el clic principal." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Clic amb el botó dret com a principal" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Clic amb el botó esquerre com a principal" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Voleu usar el botó esquerre del ratolí per fer el clic principal?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"El botó esquerre del ratolí s'ha usat on s'esperava un clic principal. Podeu " +"triar usar sempre el botó esquerre del ratolí per fer el clic principal." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Seleccioneu una llengua" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Llengua activa actual" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Connecta a la xarxa" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Cal una connexió a Internet per rebre actualitzacions, instal·lar " +"aplicacions noves i connectar-se als serveis en línia." + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Trieu una xarxa sense fil propera a l'indicador de xarxa de la part superior " +"dreta." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Connecteu un cable de xarxa" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Omet" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Següent" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "No teniu permís per establir el nom d'amfitrió \"%s\"." + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "No es pot establir el nom d'amfitrió \"%s'." + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Ha fallat crear l'usuari \"%s\"." + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "No teniu permís per crear l'usuari \"%s\"." + #~ msgid "Cancel Installation" #~ msgstr "Cancel·la la instal·lació" @@ -204,9 +285,6 @@ msgstr "Llengua activa actual" #~ "El vostre dispositiu no compleix els requeriments recomanats de " #~ "maquinari. Això pot fer que sigui lent o que es pengi." -#~ msgid "Connect to a Power Source" -#~ msgstr "Connecteu una font d'energia" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/ckb.po b/po/ckb.po index a25c4d3c..1de36fe7 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -2,143 +2,235 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2016-09-13 07:28+0000\n" -"Last-Translator: Maxwell Barvian \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-09-10 12:23+0000\n" +"Last-Translator: Aga Ismael \n" +"Language-Team: Kurdish (Central) \n" +"Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" -"X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" -msgstr "" - -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" +msgstr "دروستکردنی بەکارهێنەرێک" -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" -msgstr "" +msgstr "%s…" #: src/Objects/KeyboardVariant.vala:27 msgid "Default" -msgstr "" +msgstr "بنەڕەت" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" -msgstr "" +msgstr "دروستکدنی هەژمارێک" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" -msgstr "" +msgstr "ناوی تەواو" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" -msgstr "" +msgstr "ناوی بەکارهێنەر" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" -msgstr "" +msgstr "تێپەڕەوشەیەک هەڵبژێرە" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" -msgstr "" +msgstr "دووبارە تێپەڕەوشەکە بنووسەوە بۆ دڵنیابوونەوە" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "ناوی ئامێر" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" +"ئەم ناوە بۆ ئامێرەکانی تر لە کاتی هاوبەشکردندا دەبینرێت، بۆ نموونە. بە " +"بلوتوز یان لە ڕێگەی تۆڕەوە پەیوەندی دەبەستیت." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" -msgstr "" +msgstr "گەڕانەوە" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" -msgstr "" +msgstr "تەواوکردنی دامەزراندن" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" -msgstr "" +msgstr "تێپەڕەوشەکان هاوتا نین" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" -msgstr "" +msgstr "ناوی بەکارهێنەری هەڵبژێردراو پێشتر گیراوە" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" +"ناوی بەکار‌هێنەر دەبێت تەنها لە پیتە بچوکەکان و ژمارەکان پێکبێت، بەبێ بۆشایی" -#: src/Views/KeyboardLayoutView.vala:26 -msgid "Select Keyboard Layout" +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 -msgid "Type to test your layout" +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 -msgid "Show keyboard layout" +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." msgstr "" +"دامەزراندنی سەرەتایی نەیتوانی بەکارهێنەرەکەت دروست بکات. بەبێ بەکارهێنەریش، " +"ناتوانیت بچیتە ناو سیستەمەکە، بۆیە لەوەیە پێویست بکات دوبارە سیستەمەکە " +"دامەزرێنیتەوە." -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 -msgid "Select" +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 -msgid "Input Language" +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "دامەزراندنی سەرەتایی نەیتوانی ناوی هۆستەکەت ڕێکبخات." + +#: src/Views/KeyboardLayoutView.vala:27 +msgid "Select Keyboard Layout" +msgstr "ڕووکاری تەختەکلیل دیاریبکە" + +#: src/Views/KeyboardLayoutView.vala:33 +msgid "Type to test your layout" +msgstr "لێرە بنووسە بۆ تاقیکردنەوەی ڕووکاری تەختەکلیلەکەت" + +#: src/Views/KeyboardLayoutView.vala:36 +msgid "Show keyboard layout" +msgstr "پشاندانی ڕووکاری تەختەکلیل" + +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 +msgid "Select" +msgstr "دیاریکردن" + +#: src/Views/KeyboardLayoutView.vala:124 +msgid "Input Language" +msgstr "زمانی بەکارهێنان" + +#: src/Views/LanguageView.vala:205 msgid "Languages" +msgstr "زمانەکان" + +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "بەکارهێنای دوگمەی لای ڕاستی ماوس بۆ کرتەی سەرەکی؟" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." msgstr "" +"دوگمەی ڕاستی ماوس لەو شوێنانە بەکارهات کە چاوەڕوان دەکرا کرتەی سەرەکی بکرێت. " +"دەتوانیت هەڵبژێریت کە هەمیشە دوگمەی ڕاستی ماوس بەکاربهێنیت بۆ کرتەی سەرەکی." -#: src/Views/LanguageView.vala:244 -msgid "Select a Language" +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "کرتەی لای ڕاست وەکو سەرەکی" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "کرتەی لای چەپ وەکو سەرەکی" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "بەکارهێنای دوگمەی لای چەپی ماوس بۆ کرتەی سەرەکی؟" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." msgstr "" +"دوگمەی چەپی ماوس لەو شوێنانە بەکارهات کە چاوەڕوان دەکرا کرتەی سەرەکی بکرێت. " +"دەتوانیت هەڵبژێریت کە هەمیشە دوگمەی چەپی ماوس بەکاربهێنیت بۆ کرتەی سەرەکی." + +#: src/Views/LanguageView.vala:312 +msgid "Select a Language" +msgstr "زمانێک دیاریکە" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" +msgstr "زمانی کارای ئێستا" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "پەیوەندیکردن بە تۆڕەوە" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" msgstr "" +"بۆ وەرگرتنی نوێکارییەکان و دامەزراندنی ئەپی نوێ و پەیوەندیکردن بە " +"خزمەتگوزارییە ئۆنلاینەکانەوە پێویستە هێڵی ئینتەرنێت هەبێت" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"لە لای ڕاست لە سەرەوە، لە نیشاندەری تۆڕەکان؛ تۆڕێکی بێ وەیاری نزیک هەڵبژێرە." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "پەیوەستکردنی تۆڕێکی کەیبڵ" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "تێپەڕاندن" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "دواتر" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "هیچ مۆڵەتێک نییە بۆ ڕێکخستنی ناوی هۆستەکەت '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "ناتوانرێت ناوی هۆست '%s' دابنرێت" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "دروستکردنی بەکارهێنەر '%s' شکستی هێنا" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "هیچ مۆڵەتێک نییە بۆ دروستکردنی بەکارهێنەری '%s'" #~ msgid "translator-credits" #~ msgstr "" diff --git a/po/cs.po b/po/cs.po index 73c747b1..da18aa0a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2020-05-12 01:20+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-02-02 13:50+0000\n" "Last-Translator: p-bo \n" "Language-Team: Czech \n" @@ -12,47 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Vytvořit uživatelský účet" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"V prvotním nastavení se nepodařilo vytvořit váš uživatelský účet. Bez něj se " -"nebudete moci přihlásit a možná bude třeba operační systém přeinstalovat." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Vytváření uživatele „%s“ se nezdařilo" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Nemáte oprávnění vytvořit účet „%s“" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "Nemáte oprávnění vytvořit účet „%s“" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,93 +28,209 @@ msgstr "%s…" msgid "Default" msgstr "Výchozí" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Vytvořit uživatelský účet" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Celé jméno" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Uživatelské jméno" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Zvolte si heslo" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Potvrďte heslo" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "Název zařízení" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" +"Viditelné pro ostatní zařízení při sdílení, např. přes Bluetooth nebo síť." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Zpět" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Dokončit nastavení" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Zadání hesla se neshodují" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Zvolené uživatelské jméno už je obsazené" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Uživatelské jméno může obsahovat pouze malá písmena a číslice, bez mezer" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 #, fuzzy -#| msgid "Keyboard Layout" +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"V prvotním nastavení se nepodařilo vytvořit váš uživatelský účet. Bez něj se " +"nebudete moci přihlásit a možná bude třeba operační systém přeinstalovat." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "V prvotním nastavení se nepodařilo nastavit název vašeho počítače." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" -msgstr "Rozložení klávesnice" +msgstr "Vyberte rozložení klávesnice" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Vyzkoušejte rozložení klávesnice psaním" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Zobrazit rozložení klávesnice" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Vybrat" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Jazyk vstupu z klávesnice" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Jazyky" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Použít pravé tlačítko myši pro akce kliknutí původně levým tlačítkem?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Tam, kde bylo očekáváno kliknutí levým tlačítkem, bylo použito tlačítko " +"levé. Vždy ale můžete zvolit, že chcete použít pro akce kliknutí levým " +"tlačítkem naopak tlačítko pravé." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Kliknutí pravým ve funkci toho levého" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Kliknutí levým ve funkci levého" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Použít pro akce kliknutí levým tlačítkem skutečně to levé?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Tam, kde bylo očekáváno kliknutí levým tlačítkem, bylo použito právě to. " +"Vždy můžete zvolit, že chcete použít pro akce kliknutí levým tlačítkem " +"skutečně levé tlačítko." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Vyberte jazyk" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Právě používaný jazyk" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Připojte síť" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Připojení k Internetu je zapotřebí pro získávání aktualizací, instalaci " +"nových aplikací a připojování k online službám" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "Vyberte Wi-Fi síť poblíž z indikátoru sítě vpravo nahoře." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Připojte kabel datové sítě" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Přeskočit" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Další" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Nemáte oprávnění nastavit název počítače „%s“" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Nastavení názvu počítače „%s“ se nepodařilo" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Vytváření uživatele „%s“ se nezdařilo" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Nemáte oprávnění vytvořit účet „%s“" + #~ msgid "Cancel Installation" #~ msgstr "Zrušit instalaci" @@ -201,10 +284,6 @@ msgstr "Právě používaný jazyk" #~ "Vaše zařízení nesplňuje doporučené hardwarové požadavky. Může docházet k " #~ "zpomalení běhu systému." -#, fuzzy -#~ msgid "Connect to a Power Source" -#~ msgstr "Připojte napájení" - #, fuzzy #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " diff --git a/po/cv.po b/po/cv.po index c453e705..d4ee53cd 100644 --- a/po/cv.po +++ b/po/cv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:29+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Каялла" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/da.po b/po/da.po index 3be80c45..a1f74944 100644 --- a/po/da.po +++ b/po/da.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-06-05 23:54+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" "Language-Team: German \n" @@ -17,47 +17,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Benutzerkonto erstellen" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Es konnte kein Benutzerkonto für Sie erstellt werden. Ohne Konto können Sie " -"sich nicht anmelden und müssen daher möglicherweise das Betriebssystem neu " -"installieren." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Benutzerkonto »%s« konnte nicht erstellt werden" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Fehlende Rechte zum Erstellen des Benutzerkontos »%s«" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Die Ersteinrichtung konnte Ihren Gerätenamen nicht festlegen." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Fehlende Rechte zum Festlegen des Gerätenamens »%s«" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Gerätename »%s« kann nicht festgelegt werden" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s …" @@ -66,31 +33,31 @@ msgstr "%s …" msgid "Default" msgstr "Vorgabe" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Konto erstellen" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Voller Name" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Benutzername" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Passwort wählen" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Passwort bestätigen" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Gerätename" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -98,62 +65,178 @@ msgstr "" "Sichtbar für andere Geräte bei der Freigabe, z. B. mit Bluetooth oder über " "das Netzwerk." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Zurück" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Einrichtung abschließen" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Die Passwörter stimmen nicht überein" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Benutzername ist bereits vergeben" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Ein Benutzername darf nur Kleinbuchstaben und Ziffern enthalten, nicht aber " "Leerzeichen" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Erstellen eines Benutzerkontos für »%s« fehlgeschlagen" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Keine Berechtigung, ein Benutzerkonto für »%s« zu erstellen" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Dieses Benutzerkonto konnte nicht erstellt werden. Ohne Konto können Sie " +"sich nicht anmelden und müssen daher möglicherweise das Betriebssystem neu " +"installieren." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "Keine Berechtigung, dieses Gerät »%s« zu nennen" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Dieses Gerät »%s« zu nennen nicht möglich" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Die Ersteinrichtung konnte Ihren Gerätenamen nicht festlegen." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Tastaturbelegung wählen" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Text eingeben zum Ermitteln Ihrer Tastaturbelegung" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Tastaturbelegung zeigen" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Auswählen" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Eingabesprache" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Sprachen" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Rechte Maustaste für den primärem Klick verwenden?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Die rechte Maustaste wurde verwendet, als ein primärer Klick erwartet wurde. " +"Sie können festlegen, dass die rechte Maustaste immer für den primären Klick " +"verwendet werden soll." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Rechtsklick als primärer" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Linksklick als primärer" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Linke Maustaste für den primären Klick verwenden?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Die linke Maustaste wurde verwendet, als ein primärer Klick erwartet wurde. " +"Sie können festlegen, dass die linke Maustaste immer für den primären Klick " +"verwendet werden soll." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Sprache wählen" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Aktuell eingestellte Sprache" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Mit Netzwerk verbinden" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Für Aktualisierungen, der Installation neuer Anwendungen und die Verbindung " +"zu Online-Diensten ist eine Internet-Verbindung nötig" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Eines der verfügbaren drahtlosen Netzwerke im Netzwerkindikator oben rechts " +"wählen." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Netzwerkkabel anschließen" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Überspringen" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Weiter" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Fehlende Rechte zum Festlegen des Gerätenamens »%s«" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Gerätename »%s« kann nicht festgelegt werden" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Benutzerkonto »%s« konnte nicht erstellt werden" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Fehlende Rechte zum Erstellen des Benutzerkontos »%s«" + #~ msgid "Cancel Installation" #~ msgstr "Installation abbrechen" @@ -209,9 +292,6 @@ msgstr "Aktuell eingestellte Sprache" #~ "Ihr Rechner erfüllt nicht die empfohlenen Hardware-Anforderungen. Dies " #~ "kann dafür verantwortlich sein, dass er langsam läuft oder sich aufhängt." -#~ msgid "Connect to a Power Source" -#~ msgstr "Schließen Sie die Stromversorgung an" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/el.po b/po/el.po index 8faf6f07..7afe21be 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-10-12 01:34+0200\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,94 +26,181 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 #, fuzzy #| msgid "Select a Language" msgid "Select Keyboard Layout" msgstr "Επιλέξτε μια γλώσσα" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 #, fuzzy msgid "Input Language" msgstr "Επιλέξτε μια γλώσσα" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 #, fuzzy msgid "Languages" msgstr "Επιλέξτε μια γλώσσα" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Επιλέξτε μια γλώσσα" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/en_AU.po b/po/en_AU.po index 95ca109c..30f60415 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2017-07-11 12:01+0000\n" "Last-Translator: Mattias Ezequiel Mignone \n" "Language-Team: English (Australia) \n" "Language-Team: English (Canada) \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-19 09:36+0000\n" +"Last-Translator: Joel Jose \n" "Language-Team: English (United Kingdom) \n" "Language: en_GB\n" @@ -12,45 +12,13 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Create a User" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Creating User '%s' Failed" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "No Permission to Create User '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Initial Setup could not set your hostname." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "No Permission to set hostname '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Unable to set Hostname '%s'" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -59,31 +27,31 @@ msgstr "%s…" msgid "Default" msgstr "Default" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Create an Account" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Full Name" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Username" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Choose a Password" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Confirm Password" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Device name" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -91,61 +59,174 @@ msgstr "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Back" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Finish Setup" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Passwords do not match" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "The chosen username is already taken" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "A username must only contain lowercase letters and numbers, without spaces" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Initial Setup could not create your user. Without it, you will not be able " +"to log in and may need to reinstall the OS." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Initial Setup could not set your hostname." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Select Keyboard Layout" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Type to test your layout" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Show keyboard layout" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Select" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Input Language" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Languages" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Use the right mouse button for primary click?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Right-Click as Primary" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Left-Click as Primary" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Use the left mouse button for primary click?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Select a Language" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Currently active language" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "No Permission to set hostname '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Unable to set Hostname '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Creating User '%s' Failed" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "No Permission to Create User '%s'" + #~ msgid "Cancel Installation" #~ msgstr "Cancel Installation" diff --git a/po/eo.po b/po/eo.po index b7c832ae..829d90e1 100644 --- a/po/eo.po +++ b/po/eo.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-08-26 21:22+0000\n" "Last-Translator: Shtonchjo \n" "Language-Team: Esperanto \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-02-18 00:04+0000\n" +"Last-Translator: Jose Manuel Hernandez Farias \n" "Language-Team: Spanish \n" "Language: es\n" @@ -15,43 +15,11 @@ msgstr "" "X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Crear un usuario" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"La configuración inicial no pudo crear su cuenta de usuario. Sin esta, no " -"podrá acceder al sistema y quizá tenga que reinstalarlo." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Error al crear el usuario «%s»" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Sin permiso para crear el usuario «%s»" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "La configuración inicial no pudo establecer su nombre de host." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Sin permiso para establecer el nombre de host '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "No se puede establecer el nombre de host '%s'" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "Predeterminada" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Crear una cuenta" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Nombre completo" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Nombre de usuario" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Elija una contraseña" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Confirmar contraseña" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Nombre del dispositivo" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -92,62 +60,184 @@ msgstr "" "Visible para otros dispositivos al compartir, p. Ej. con Bluetooth o en la " "red." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Atrás" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Finalizar configuración" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Este nombre de usuario ya está en uso" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "El nombre de usuario puede contener solo letras minúsculas y números, sin " "espacios" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"La configuración inicial no pudo crear su cuenta de usuario. Sin esta, no " +"podrá acceder al sistema y quizá tenga que reinstalarlo." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "La configuración inicial no pudo establecer su nombre de host." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Seleccionar distribución del teclado" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Escriba para probar la disposición" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Mostrar disposición del teclado" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Seleccionar" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Idioma de entrada" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Idiomas" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "¿Usar el botón derecho del ratón para el clic principal?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"El botón derecho del ratón se uso donde se esperaba un clic principal. Puede " +"elegir usar siempre el botón derecho del ratón como clic principal." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Clic derecho como clic principal" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Clic izquierdo como clic principal" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "¿Usar el botón izquierdo del ratón como clic principal?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Se usó el botón izquierdo del ratón donde se esperaba un clic principal. " +"Puede elegir usar siempre el botón izquierdo del ratón para el clic " +"principal." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Seleccione un idioma" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Idioma elegido actualmente" +#: src/Views/NetworkView.vala:30 +#, fuzzy +#| msgid "Connect to a Power Source" +msgid "Connect Network" +msgstr "Conectar a una fuente de alimentación" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Se requiere una conexión a Internet para recibir actualizaciones, instalar " +"nuevas aplicaciones, y conectarse a servicios en línea" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Elija una red inalámbrica cercana desde el indicador de red en la parte " +"superior derecha." + +#: src/Views/NetworkView.vala:48 +#, fuzzy +#| msgid "Connect to a Power Source" +msgid "Connect a network cable" +msgstr "Conectar a una fuente de alimentación" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Saltar" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Siguiente" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Sin permiso para establecer el nombre de host '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "No se puede establecer el nombre de host '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Error al crear el usuario «%s»" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Sin permiso para crear el usuario «%s»" + #~ msgid "Cancel Installation" #~ msgstr "Cancelar instalación" @@ -202,9 +292,6 @@ msgstr "Idioma elegido actualmente" #~ "El dispositivo no cumple los requisitos de hardware recomendados. Ésto " #~ "puede hacer que funcione lentamente o se congele." -#~ msgid "Connect to a Power Source" -#~ msgstr "Conectar a una fuente de alimentación" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/et.po b/po/et.po index 1762cd36..9e2016a4 100644 --- a/po/et.po +++ b/po/et.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:29+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Kustuta" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/eu.po b/po/eu.po index 50dfb94f..42a9156f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:29+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Atzera tekla" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/extra/af.po b/po/extra/af.po index 729acb34..375e32e6 100644 --- a/po/extra/af.po +++ b/po/extra/af.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/ak.po b/po/extra/ak.po index 729acb34..375e32e6 100644 --- a/po/extra/ak.po +++ b/po/extra/ak.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/ar.po b/po/extra/ar.po index 618de8fc..9cd5b7fb 100644 --- a/po/extra/ar.po +++ b/po/extra/ar.po @@ -1,11 +1,11 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-08-27 15:13+0000\n" "Last-Translator: Muhammad Al-Jayyousi \n" -"Language-Team: Arabic \n" +"Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,8 +24,8 @@ msgid "Set up the system" msgstr "قم بإعداد النظام" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -39,49 +39,85 @@ msgstr "" "يساعد في المهام الأساسية قبل أن يكون التثبيت الجديد قابلاً للاستخدام، مثل " "اختيار اللغة وإنشاء مستخدم." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +#, fuzzy +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "اختيار تخطيط لوحة المفاتيح في accountsservice" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "ميزات جديدة:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "تأكيد وتغيير اسم الجهاز" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "تمريرة بأصبعين للرجوع إلى الوراء" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "تحديثات طفيفة:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "تحديثات على الترجمة" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "اختيار تخطيط لوحة المفاتيح في accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "إضافة حركات اللمس المتعدد" +#~ msgid "Add multitouch gestures" +#~ msgstr "إضافة حركات اللمس المتعدد" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "ضبط الأماكن بشكل صحيح" +#~ msgid "Set correct locales" +#~ msgstr "ضبط الأماكن بشكل صحيح" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "ألوان بديلة احتياطية مكان الصورة الشخصية في حال لم توجد" +#~ msgid "New colorful avatar fallback" +#~ msgstr "ألوان بديلة احتياطية مكان الصورة الشخصية في حال لم توجد" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "الإصدار الأولي" +#~ msgid "Initial release" +#~ msgstr "الإصدار الأولي" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/az.po b/po/extra/az.po index f1856b27..8971c02b 100644 --- a/po/extra/az.po +++ b/po/extra/az.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Azerbaijani =2 && n" @@ -17,7 +17,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -30,49 +30,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/bg.po b/po/extra/bg.po index 155c261b..755ca847 100644 --- a/po/extra/bg.po +++ b/po/extra/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/bs.po b/po/extra/bs.po index 9c0139bc..90b1da74 100644 --- a/po/extra/bs.po +++ b/po/extra/bs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 @@ -23,8 +23,8 @@ msgid "Set up the system" msgstr "Configureu el sistema" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "io.elementary.initial-setup" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -38,49 +38,84 @@ msgstr "" "Ajuda amb les tasques essencials abans que es pugui usar una instal·lació " "nova, com ara triar una llengua i crear un compte d'usuari." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "Millores:" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "Icones més grosses a les vistes" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "Es pot canviar la mida de la finestra." + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "Disposicions del teclat en una finestra independent" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "Permet els guions als noms dels dispositius." + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "Traduccions actualitzades" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "" +"Ofereix canviar al botó principal del ratolí amb el botó dret del ratolí." + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "Suggereix connectar-se a una xarxa." + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "Evita els noms polítics de determinades localitats." + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Característiques noves:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Confirmació i canvi del nom del dispositiu" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "Desplaçament de dos dits per tornar enrere" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Actualitzacions menors:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Actualitzacions de la traducció" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Establiu la disposició del teclat al servei del compte." +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Afegiu-hi gests multitàctils" +#~ msgid "Add multitouch gestures" +#~ msgstr "Afegiu-hi gests multitàctils" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Establiment de la llengua correcta" +#~ msgid "Set correct locales" +#~ msgstr "Establiment de la llengua correcta" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Avatar acolorit alternatiu nou" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Avatar acolorit alternatiu nou" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Publicació inicial" +#~ msgid "Initial release" +#~ msgstr "Publicació inicial" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/ckb.po b/po/extra/ckb.po index 2e2b35ea..e5a33d33 100644 --- a/po/extra/ckb.po +++ b/po/extra/ckb.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-09-07 18:22+0000\n" -"Last-Translator: Daniel Foré \n" -"Language-Team: Sorani \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-08-04 14:23+0000\n" +"Last-Translator: Aga Ismael \n" +"Language-Team: Kurdish (Central) \n" "Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.7.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 msgid "Set up elementary OS" -msgstr "" +msgstr "دامەزراندنی ئێلەمێنتری" #: data/io.elementary.initial-setup.desktop.in:4 msgid "Set up the system" -msgstr "" +msgstr "ڕێکخستنی سیستەمەکە" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -43,53 +43,75 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" + #~ msgid "Calculator" #~ msgstr "ژمێرەر" diff --git a/po/extra/cs.po b/po/extra/cs.po index 8ee87a4f..d104e1f7 100644 --- a/po/extra/cs.po +++ b/po/extra/cs.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2020-05-30 21:11+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-01-11 17:05+0000\n" "Last-Translator: p-bo \n" "Language-Team: Czech \n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 @@ -23,8 +23,8 @@ msgid "Set up the system" msgstr "Nastavit systém" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -38,51 +38,85 @@ msgstr "" "Pomáhá s nezbytnými úkony k tomu, aby novou instalaci bylo možné používat, " "jako je například výběr jazyka a vytvoření uživatelského účtu." -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 #, fuzzy -#| msgid "Translation updates" -msgid "Minor updates:" -msgstr "Aktualizace překladů" +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "Nastavení rozložení klávesnice v accountsservice" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" -msgstr "Aktualizace překladů" - -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" +#: data/io.elementary.initial-setup.appdata.xml.in:36 #: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Prvotní vydání" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "Nové funkce:" + +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" +msgstr "Potvrďte a změňte název zařízení" + +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "Přejetí dvěma prsty pro návrat zpět" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "Menší aktualizace:" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "Aktualizace překladů" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "elementary, Inc." + +#~ msgid "Add multitouch gestures" +#~ msgstr "Přidání vícedotykových gest" + +#~ msgid "Set correct locales" +#~ msgstr "Nastavte správná místní a jazyková nastavení" + +#~ msgid "New colorful avatar fallback" +#~ msgstr "Nový barevný avatar jako náhrada za ikonku uživatele" + +#~ msgid "Initial release" +#~ msgstr "Prvotní vydání" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/cv.po b/po/extra/cv.po index 729acb34..375e32e6 100644 --- a/po/extra/cv.po +++ b/po/extra/cv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/da.po b/po/extra/da.po index 9ad78d69..a09d0621 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2020-05-28 12:11+0000\n" "Last-Translator: Rantyrant \n" "Language-Team: Danish \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "Set up the system" msgstr "System einrichten" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -46,52 +46,88 @@ msgstr "" "ist, wie zum Beispiel die Wahl der Sprache und das Erstellen eines " "Benutzeraccounts." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +#, fuzzy +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "Keyboard Layout in accountsservice gesetzt" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Neue Funktionen:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Gerätenamen bestätigen und ändern" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "Zwei-Finger-Wisch um zur vorherigen Seite zurück zu navigieren" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Kleinere Aktualisierungen:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Aktualisierte Übersetzungen" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Keyboard Layout in accountsservice gesetzt" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Multitouch-Gesten hinzufügen" +#~ msgid "Add multitouch gestures" +#~ msgstr "Multitouch-Gesten hinzufügen" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Korrekte Sprachumgebung setzen" +#~ msgid "Set correct locales" +#~ msgstr "Korrekte Sprachumgebung setzen" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Neue farbenfrohe Avatar-Fallbacks" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Neue farbenfrohe Avatar-Fallbacks" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Erstmaliges Release" +#~ msgid "Initial release" +#~ msgstr "Erstmaliges Release" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "Taschenrechner" diff --git a/po/extra/el.po b/po/extra/el.po index 729acb34..375e32e6 100644 --- a/po/extra/el.po +++ b/po/extra/el.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po index 729acb34..375e32e6 100644 --- a/po/extra/en_AU.po +++ b/po/extra/en_AU.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/en_CA.po b/po/extra/en_CA.po index 729acb34..375e32e6 100644 --- a/po/extra/en_CA.po +++ b/po/extra/en_CA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/en_GB.po b/po/extra/en_GB.po index ac55053c..455a7b13 100644 --- a/po/extra/en_GB.po +++ b/po/extra/en_GB.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-09-22 21:59+0000\n" "Last-Translator: Ciarán Ainsworth \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/eu.po b/po/extra/eu.po index 729acb34..375e32e6 100644 --- a/po/extra/eu.po +++ b/po/extra/eu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/extra.pot b/po/extra/extra.pot index fbb1bcfb..6f6df2e8 100644 --- a/po/extra/extra.pot +++ b/po/extra/extra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,7 +27,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -40,49 +40,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/fa.po b/po/extra/fa.po index ff33f9ae..da1c8da7 100644 --- a/po/extra/fa.po +++ b/po/extra/fa.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-09-07 18:22+0000\n" -"Last-Translator: Daniel Foré \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-04-14 23:02+0000\n" +"Last-Translator: Pikhosh \n" "Language-Team: Persian \n" "Language: fa\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.7.1\n" +"X-Generator: Weblate 4.4.2\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 @@ -23,8 +23,8 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -36,49 +36,71 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "ویژگی های جدید:" + +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/fi.po b/po/extra/fi.po index a9f79de9..cdb9ece2 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-10-08 10:59+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "Language-Team: French \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -30,8 +30,8 @@ msgid "Set up the system" msgstr "Installer le système" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -45,52 +45,86 @@ msgstr "" "Facilite les tâches essentielles avant qu'une nouvelle installation ne soit " "opérationnelle, comme choisir une langue et créer un compte utilisateur." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "Améliorations :" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "Utilisation de plus grandes icônes dans les vues" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "La fenêtre peut désormais être redimensionnée" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "Affichage des dispositions du clavier dans une fenêtre distincte" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "Autorisation des tirets dans le nom des périphériques" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "Mise à jour des traductions" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "Il est désormais possible de modifier le bouton principal de la souris" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "Suggestion de connexion à un réseau" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "Nous avons évité les appellations politiques de certains lieux" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Nouvelles fonctionnalités :" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Confirmation et modification du nom de l'appareil" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "Faites glisser deux doigts pour revenir en arrière" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Mises à jour mineures :" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Mise à jour des traductions" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Définir la disposition du clavier dans le service des comptes" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Ajout du multi-touch" +#~ msgid "Add multitouch gestures" +#~ msgstr "Ajout du multi-touch" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Définir les paramètres régionaux corrects" +#~ msgid "Set correct locales" +#~ msgstr "Définir les paramètres régionaux corrects" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Nouvel avatar coloré par défaut" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Nouvel avatar coloré par défaut" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Version initiale" +#~ msgid "Initial release" +#~ msgstr "Version initiale" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Install elementary OS on your machine" #~ msgstr "Installer elementary OS sur votre machine" diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po index 59ebef7c..1a14e1db 100644 --- a/po/extra/fr_CA.po +++ b/po/extra/fr_CA.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: French (Canada) \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 @@ -23,8 +23,8 @@ msgid "Set up the system" msgstr "התקנת המערכת" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -38,49 +38,83 @@ msgstr "" "מסייע במשימות חיוניות בטרם תחילת השימוש בהתקנה נקייה, כמו למשל לבחור את השפה " "וליצור חשבון משתמש." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "שיפורים:" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "שימוש בסמלים גדולים יותר בתצוגות" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "החלונות ניתנים להגדלה והקטנה" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "פריסות מקלדת יוצגו בחלון נפרד" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "אפשר להשתמש במקפים בשמות המכשירים" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "עודכנו התרגומים" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "הצעה להחלפת המקש הימני בעיקרי בעכבר" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "הצעת התחברות לרשת" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "קיימת מניעה ממתן שמות פוליטיים בשפות מסוימות" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "יכולות חדשות:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "אישור ושינוי שם המכשיר" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "החלקה בשתי אצבעות כדי לנווט אחורה" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "עדכונים משניים:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "עדכון תרגומים" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "הגדרת פריסת מקלדת בשירות החשבונות (accountsservice)" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary בע״מ" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "נוספה תמיכה במחוות מגע במספר נקודות" +#~ msgid "Add multitouch gestures" +#~ msgstr "נוספה תמיכה במחוות מגע במספר נקודות" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "הגדרות השפה הנכונות תיבחרנה" +#~ msgid "Set correct locales" +#~ msgstr "הגדרות השפה הנכונות תיבחרנה" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "תמונה ייצוגית צבעונית חדשה כנסיגה" +#~ msgid "New colorful avatar fallback" +#~ msgstr "תמונה ייצוגית צבעונית חדשה כנסיגה" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "מהדורה ראשונה" +#~ msgid "Initial release" +#~ msgstr "מהדורה ראשונה" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary בע״מ" +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/hi.po b/po/extra/hi.po index 082b526a..f0e13c9c 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Hindi \n" "Language-Team: Croatian \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/hu.po b/po/extra/hu.po index a4ac1048..237dcf58 100644 --- a/po/extra/hu.po +++ b/po/extra/hu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-26 12:08+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2021-12-26 00:35+0000\n" "Last-Translator: TomiOhl \n" "Language-Team: Hungarian \n" @@ -23,15 +23,15 @@ msgstr "" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 msgid "Set up elementary OS" -msgstr "" +msgstr "Az elementary OS beállítása" #: data/io.elementary.initial-setup.desktop.in:4 msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -43,49 +43,71 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "elementary, Inc." + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/hy.po b/po/extra/hy.po index 729acb34..375e32e6 100644 --- a/po/extra/hy.po +++ b/po/extra/hy.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/id.po b/po/extra/id.po index 43692777..dfabbd37 100644 --- a/po/extra/id.po +++ b/po/extra/id.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-06-18 03:43+0000\n" "Last-Translator: Corentin Noël \n" "Language-Team: Indonesian \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -30,12 +30,12 @@ msgid "Set up the system" msgstr "システムをセットアップします" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" -msgstr "初期セットアップ" +msgstr "初期設定" #: data/io.elementary.initial-setup.appdata.xml.in:10 msgid "" @@ -45,52 +45,86 @@ msgstr "" "言語の選択やユーザーアカウントの作成など、新規インストール時に必要な作業を支" "援します。" -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "改善点:" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "各画面でより大きなアイコンを使用するように修正" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "ウィンドウサイズが変更可能に" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "キーボードレイアウトを別ウィンドウで表示するように修正" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "デバイス名にハイフンを使用できるように修正" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "翻訳の更新" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "マウスの主ボタンで右クリックを行うかどうか尋ねる機能を追加" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "インターネットへの接続を提案するように修正" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "一部地域名に政治的な問題があったのを修正" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "新機能:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "デバイス名を確認・変更できる機能を追加" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "2本指スワイプで1つ前の設定画面に戻れるように修正" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" -msgstr "軽微なアップデート:" +msgstr "そのほかのアップデート:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "翻訳の更新" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "AccountsService を利用してキーボードレイアウトを設定するように変更" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "マルチタッチジェスチャーを追加" +#~ msgid "Add multitouch gestures" +#~ msgstr "マルチタッチジェスチャーを追加" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "適切な地域を設定するように修正" +#~ msgid "Set correct locales" +#~ msgstr "適切なロケールを設定するように修正" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "アバター画像未設定時に背景を色付きで表示するように変更" +#~ msgid "New colorful avatar fallback" +#~ msgstr "アバター画像未設定時に背景を色付きで表示するように変更" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "最初のリリース" +#~ msgid "Initial release" +#~ msgstr "最初のリリース" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "計算機" diff --git a/po/extra/jv.po b/po/extra/jv.po index 729acb34..375e32e6 100644 --- a/po/extra/jv.po +++ b/po/extra/jv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/ka.po b/po/extra/ka.po index 729acb34..375e32e6 100644 --- a/po/extra/ka.po +++ b/po/extra/ka.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/kn.po b/po/extra/kn.po index 729acb34..375e32e6 100644 --- a/po/extra/kn.po +++ b/po/extra/kn.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/ko.po b/po/extra/ko.po index 1cbbd61e..58456e38 100644 --- a/po/extra/ko.po +++ b/po/extra/ko.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-05-05 20:32+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-08-08 00:07+0000\n" "Last-Translator: Jung-Kyu Park \n" "Language-Team: Korean \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.6.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -30,66 +30,102 @@ msgid "Set up the system" msgstr "시스템 설정" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" -msgstr "" +msgstr "처음 설정" #: data/io.elementary.initial-setup.appdata.xml.in:10 msgid "" "Assists with essential tasks before a fresh install is usable, like choosing " "a language and creating a user account." msgstr "" +"언어 선택 및 사용자 계정 생성과 같은 새로 설치하기 전 필수 작업을 지원합니다." -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +#, fuzzy +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "계정 서비스에서 키보드 레이아웃 설정" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "새로운 기능:" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" +msgstr "컴퓨터 이름 정하고 바꾸기" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -#, fuzzy +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "두 손가락 스와이프로 뒤로 가기" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "소소한 업데이트:" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "번역 업데이트" + +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." -msgstr "elementary OS 설정" +msgstr "elementary, Inc." + +#~ msgid "Add multitouch gestures" +#~ msgstr "멀티터치 제스처 추가" + +#~ msgid "Set correct locales" +#~ msgstr "올바른 로케일 설정" + +#~ msgid "New colorful avatar fallback" +#~ msgstr "새로운 다채로운 아바타 대체" + +#~ msgid "Initial release" +#~ msgstr "첫 출시" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "계산기" diff --git a/po/extra/ku.po b/po/extra/ku.po index bd2c3c1f..792ae9c5 100644 --- a/po/extra/ku.po +++ b/po/extra/ku.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Kurdish \n" "Language-Team: Lithuanian \n" "Language-Team: Moldovan \n" "Language-Team: Marathi \n" "Language-Team: Malay \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/my.po b/po/extra/my.po index b5ce4950..f0ea110b 100644 --- a/po/extra/my.po +++ b/po/extra/my.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-06-24 03:08+0000\n" "Last-Translator: Bone Pyae Sone \n" "Language-Team: Burmese \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/nb.po b/po/extra/nb.po index e646b836..9207221d 100644 --- a/po/extra/nb.po +++ b/po/extra/nb.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-11-15 22:24+0000\n" -"Last-Translator: Nils K \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-11 14:29+0000\n" +"Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.7.1\n" +"X-Generator: Weblate 4.14.2\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 @@ -23,8 +23,8 @@ msgid "Set up the system" msgstr "Sett opp systemet" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -38,51 +38,77 @@ msgstr "" "Hjelper til med viktige oppgaver som gjøre en ny installasjon brukendes, som " "å velge språk og opprette en brukekonto." -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -#, fuzzy -#| msgid "Translation updates" -msgid "Minor updates:" -msgstr "Oppdater oversettelser" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" -msgstr "Oppdater oversettelser" +msgid "Offer to switch to right-click primary mouse button" +msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Første utgivelse" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:78 +#, fuzzy +#| msgid "Translation updates" +msgid "Minor updates:" +msgstr "Oppdater oversettelser" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "Oppdater oversettelser" + +#: data/io.elementary.initial-setup.appdata.xml.in:89 +#, fuzzy msgid "elementary, Inc." -msgstr "elementary, Inc" +msgstr "elementary, Inc." + +#~ msgid "Initial release" +#~ msgstr "Første utgivelse" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/nl.po b/po/extra/nl.po index 7a9c99c7..0b3676d4 100644 --- a/po/extra/nl.po +++ b/po/extra/nl.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-12-30 06:47+0000\n" -"Last-Translator: Jaimie85 \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-05-22 06:09+0000\n" +"Last-Translator: Dennis ten Hoove \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" #: data/io.elementary.initial-setup.desktop.in:3 #: data/io.elementary.initial-setup.appdata.xml.in:8 @@ -23,66 +23,100 @@ msgid "Set up the system" msgstr "Het systeem installeren" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" -msgstr "Eerste Installatie" +msgstr "Initiële instelling" #: data/io.elementary.initial-setup.appdata.xml.in:10 msgid "" "Assists with essential tasks before a fresh install is usable, like choosing " "a language and creating a user account." msgstr "" -"Assisteert met essentiële taken voordat een nieuwe installatie bruikbaar is, " -"zoals het kiezen van een taal en het aanmaken van een gebruiker." - -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +"Assisteert met essentiële taken voordat een nieuwe installatie bruikbaar is " +"zoals het kiezen van een taal en het aanmaken van een gebruikersaccount." + +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 #, fuzzy -#| msgid "Translation updates" -msgid "Minor updates:" -msgstr "Bijgewerkte vertalingen" +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "Toetsenbordindeling instellen in accountservice" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" -msgstr "Bijgewerkte vertalingen" - -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" +#: data/io.elementary.initial-setup.appdata.xml.in:36 #: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Eerste release" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "Nieuwe functionaliteit:" + +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" +msgstr "Bevestigen en wijzig apparaatnaam" + +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "Vegen met twee vingers om terug te navigeren" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "Kleine updates:" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "Bijgewerkte vertalingen" + +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "elementary, Inc." + +#~ msgid "Add multitouch gestures" +#~ msgstr "Multitouch-bewegingen toegevoegd" + +#~ msgid "Set correct locales" +#~ msgstr "Stel correcte locales in" + +#~ msgid "New colorful avatar fallback" +#~ msgstr "Nieuwe kleurrijke avatar fallback" + +#~ msgid "Initial release" +#~ msgstr "Eerste uitgave" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/nn.po b/po/extra/nn.po index f580f379..075fb361 100644 --- a/po/extra/nn.po +++ b/po/extra/nn.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2020-07-04 18:12+0000\n" "Last-Translator: Martin Myrvold \n" "Language-Team: Norwegian Nynorsk \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-12-11 10:25+0000\n" +"Last-Translator: Marcin Serwin \n" "Language-Team: Polish \n" "Language: pl\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -31,8 +31,8 @@ msgid "Set up the system" msgstr "Skonfiguruj system" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "io.elementary.initial-setup" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -46,54 +46,86 @@ msgstr "" "Pomaga w niezbędnych zadaniach przed użyciem nowej instalacji, takich jak " "wybór języka i utworzenie konta użytkownika." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "Ulepszenia:" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "Użyto większych ikon w widokach" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "Okna mogą teraz zmieniać rozmiar" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "Pokazanie układów klawiatury w osobnym oknie" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "Dozwolono używać myślników w nazwach urządzeń" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "Zaktualizowano tłumaczenia" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "Opcja zmiany na prawy przycisk myszy jako główny przycisk" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "Proponowanie połączenia z siecią" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "Uniknięcie upolitycznionych nazw niektórych ustawień regionalnych" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Nowe funkcje:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Potwierdź i zmień nazwę urządzenia" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" -msgstr "" +msgstr "Przesuń dwoma palcami by się cofnąć" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -#, fuzzy -#| msgid "Translation updates" +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" -msgstr "Aktualizacje tłumaczenia" +msgstr "Drobne aktualizacje:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Aktualizacje tłumaczenia" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "" +#~ msgid "Add multitouch gestures" +#~ msgstr "Dodano gesty wielodotykowe" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "" +#~ msgid "Set correct locales" +#~ msgstr "Ustawiono poprawne dane regionalne" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Nowy kolorowy awatar zastępczy" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Wydanie wstępne" +#~ msgid "Initial release" +#~ msgstr "Wydanie wstępne" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "Kalkulator" diff --git a/po/extra/pt.po b/po/extra/pt.po index 2b5b9f2d..a7c24e91 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-07-18 21:55+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2021-11-17 16:19+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" @@ -30,8 +30,8 @@ msgid "Set up the system" msgstr "Configurar o sistema" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -45,53 +45,89 @@ msgstr "" "Auxilia em tarefas essenciais antes que uma nova instalação seja utilizável, " "como escolher um idioma e criar uma conta de utilizador." -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" -msgstr "Pequenas atualizações:" +#, fuzzy +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "Definir o esquema do teclado no serviço de contas" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" -msgstr "Atualizações de tradução" +msgid "Offer to switch to right-click primary mouse button" +msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Definir o esquema do teclado no serviço de contas" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Acrescentar gestos multi-toque" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Definir locais corretos" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "Novas funcionalidades:" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Novo avatar colorido substituto" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" +msgstr "Confirmar e alterar o nome do dispositivo" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Lançamento inicial" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "Deslizar dois dedos para voltar atrás" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "Pequenas atualizações:" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "Atualizações de tradução" + +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "elementary, Inc." +#~ msgid "Add multitouch gestures" +#~ msgstr "Acrescentar gestos multi-toque" + +#~ msgid "Set correct locales" +#~ msgstr "Definir locais corretos" + +#~ msgid "New colorful avatar fallback" +#~ msgstr "Novo avatar colorido substituto" + +#~ msgid "Initial release" +#~ msgstr "Lançamento inicial" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" + #~ msgid "Calculator" #~ msgstr "Calculadora" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po index dabaa9a0..18abeef0 100644 --- a/po/extra/pt_BR.po +++ b/po/extra/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-10-25 15:24+0000\n" "Last-Translator: Rodrigo Oliveira \n" "Language-Team: Portuguese (Brazil) 0 && n%100 < " @@ -17,7 +17,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -30,49 +30,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/ru.po b/po/extra/ru.po index 8270a287..58fba1e7 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-09-04 16:04+0000\n" -"Last-Translator: DartDeaDia \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-12-10 06:25+0000\n" +"Last-Translator: lenemter \n" "Language-Team: Russian \n" "Language: ru\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -31,12 +31,12 @@ msgid "Set up the system" msgstr "Установить систему" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" -msgstr "Начальная установка" +msgstr "Начальная настройка" #: data/io.elementary.initial-setup.appdata.xml.in:10 msgid "" @@ -44,55 +44,89 @@ msgid "" "a language and creating a user account." msgstr "" "Помогает выполнить основные задачи, прежде чем свежая установка станет " -"пригодной для использования, например, выбор языка и создание учетной записи " +"пригодной для использования, например, выбор языка и создание учётной записи " "пользователя." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "Улучшения:" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "Использование больших значков" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "Окно теперь может менять размер" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "Показ раскладок клавиатуры в отдельном окне" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "Разрешены дефисы в имени устройства" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "Обновлены переводы" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "Предложение использовать правую кнопку мыши как основную" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "Предложение подключиться к Интернету" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "Не использовать политические названия на некоторых языках" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Новые возможности:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Подтверждение и смена имени устройства" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "Проведение двумя пальцами, чтобы перейти назад" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Незначительные обновления:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Обновления переводов" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Установка раскладки клавиатуры в службе учетных записей" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Добавлены мультитач-жесты" +#~ msgid "Add multitouch gestures" +#~ msgstr "Добавлены мультитач-жесты" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Установка правильных локалей" +#~ msgid "Set correct locales" +#~ msgstr "Установка правильных локалей" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Возвращение нового красочного аватара" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Новые красочные аватары" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Начальный выпуск" +#~ msgid "Initial release" +#~ msgstr "Начальный выпуск" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "Калькулятор" diff --git a/po/extra/sa.po b/po/extra/sa.po index 729acb34..375e32e6 100644 --- a/po/extra/sa.po +++ b/po/extra/sa.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/si.po b/po/extra/si.po index 729acb34..375e32e6 100644 --- a/po/extra/si.po +++ b/po/extra/si.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/sk.po b/po/extra/sk.po index ed6f1899..6e028b0f 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-08-29 15:18+0000\n" "Last-Translator: janko mrkvicka <6aby74rto@relay.firefox.com>\n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "Set up the system" msgstr "Nastavte systém" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -45,49 +45,85 @@ msgstr "" "Pomáha so základnými úlohami aby bolo možné používať novú inštaláciu, ako " "napríklad s výberom jazyka a vytvorením používateľského účtu." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +#, fuzzy +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "Nastavte rozloženie klávesnice v accountsservice (správa účtov)" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Nové funkcie:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Potvrďte a zmeňte názov zariadenia" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "Gesto dvomi prstami na pohyb späť" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Menšie aktualizácie:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Aktualizované preklady" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Nastavte rozloženie klávesnice v accountsservice (správa účtov)" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Pridané viacdotykové gestá" +#~ msgid "Add multitouch gestures" +#~ msgstr "Pridané viacdotykové gestá" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Nastavenie správnej oblasti" +#~ msgid "Set correct locales" +#~ msgstr "Nastavenie správnej oblasti" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Nová farebná náhradná ikonka používateľa" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Nová farebná náhradná ikonka používateľa" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Prvé vydanie" +#~ msgid "Initial release" +#~ msgstr "Prvé vydanie" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" diff --git a/po/extra/sl.po b/po/extra/sl.po index ce25cfe0..1374d222 100644 --- a/po/extra/sl.po +++ b/po/extra/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2020-02-03 21:08+0000\n" "Last-Translator: Marko \n" "Language-Team: Slovenian \n" "Language-Team: Albanian \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/sr.po b/po/extra/sr.po index d9c5b0d3..fd5658c6 100644 --- a/po/extra/sr.po +++ b/po/extra/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2020-12-19 10:16+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Thai \n" "Language-Team: Tagalog \n" @@ -28,7 +28,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -41,50 +41,69 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/tn.po b/po/extra/tn.po index 75799de8..2d954b6c 100644 --- a/po/extra/tn.po +++ b/po/extra/tn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,7 +26,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -39,49 +39,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/to.po b/po/extra/to.po index eb9a39c8..ac575850 100644 --- a/po/extra/to.po +++ b/po/extra/to.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,7 +26,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -39,49 +39,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/tr.po b/po/extra/tr.po index 52a75b93..53bc8c6f 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-25 01:58+0000\n" -"Last-Translator: Özgür Baskin \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2021-12-22 16:21+0000\n" +"Last-Translator: Yağızhan Burak Yakar \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -30,8 +30,8 @@ msgid "Set up the system" msgstr "Sistemi ayarla" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -45,52 +45,88 @@ msgstr "" "Yeni bir kurulum kullanılabilir duruma gelmeden önce, bir dil seçmek ve bir " "kullanıcı hesabı oluşturmak gibi temel görevlerde yardımcı olur." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +#, fuzzy +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "Hesaplar hizmetinde klavye düzenini ayarla" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" -msgstr " " +msgstr "Yeni özellikler:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" -msgstr " " +msgstr "Cihaz adını onayla ve değiştir" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" -msgstr " " +msgstr "Geri gitmek için iki parmakla kaydırma" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Küçük güncellemeler:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Çeviriler güncellendi" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Hesaplar hizmetinde klavye düzenini ayarla" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Çoklu dokunma hareketleri eklendi" +#~ msgid "Add multitouch gestures" +#~ msgstr "Çoklu dokunma hareketleri eklendi" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Doğru yerel ayarlar ayarlandı" +#~ msgid "Set correct locales" +#~ msgstr "Doğru yerel ayarlar ayarlandı" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Yeni renkli avatar yedeği eklendi" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Yeni renkli avatar yedeği eklendi" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "İlk sürüm" +#~ msgid "Initial release" +#~ msgstr "İlk sürüm" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "Hesap Makinesi" diff --git a/po/extra/ug.po b/po/extra/ug.po index 729acb34..375e32e6 100644 --- a/po/extra/ug.po +++ b/po/extra/ug.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/uk.po b/po/extra/uk.po index c3d91f77..04d46582 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-25 01:58+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-12-10 06:25+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -31,8 +31,8 @@ msgid "Set up the system" msgstr "Встановити систему" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "io.elementary.initial-setup" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -46,52 +46,86 @@ msgstr "" "Допомагає виконати основні завдання, перш ніж нова установка стане придатною " "для вжитку, наприклад, вибір мови та створення облікового запису користувача." -#: data/io.elementary.initial-setup.appdata.xml.in:29 +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" +msgstr "Удосконалення:" + +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" +msgstr "Збільшені піктограми у поданнях" + +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" +msgstr "Вікно змінюваного розміру" + +#: data/io.elementary.initial-setup.appdata.xml.in:34 +msgid "Show keyboard layouts in a separate window" +msgstr "Показ розкладок клавіатури в окремому вікні" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" +msgstr "Дозволено дефіс у назвах пристроїв" + +#: data/io.elementary.initial-setup.appdata.xml.in:36 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "Оновлено переклади" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" +msgstr "Пропозиція змінити основну кнопку миші на праву" + +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" +msgstr "Пропозиція під'єднатися до мережі" + +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" +msgstr "Уникнення політичних назв окремих локалей" + +#: data/io.elementary.initial-setup.appdata.xml.in:73 msgid "New features:" msgstr "Нові можливості:" -#: data/io.elementary.initial-setup.appdata.xml.in:31 +#: data/io.elementary.initial-setup.appdata.xml.in:75 msgid "Confirm and change device name" msgstr "Підтвердити та змінити назву пристрою" -#: data/io.elementary.initial-setup.appdata.xml.in:32 +#: data/io.elementary.initial-setup.appdata.xml.in:76 msgid "Two-finger swipe to navigate back" msgstr "Проведення двома пальцями, щоб перейти назад" -#: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 +#: data/io.elementary.initial-setup.appdata.xml.in:78 msgid "Minor updates:" msgstr "Незначні оновлення:" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 +#: data/io.elementary.initial-setup.appdata.xml.in:80 msgid "Translation updates" msgstr "Оновлено переклади" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" -msgstr "Установлення розкладки клавіатури в службі облікових записів" +#: data/io.elementary.initial-setup.appdata.xml.in:89 +msgid "elementary, Inc." +msgstr "elementary, Inc." -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" -msgstr "Додано багатофункціональні жести" +#~ msgid "Add multitouch gestures" +#~ msgstr "Додано багатофункціональні жести" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" -msgstr "Установлення правильних локалей" +#~ msgid "Set correct locales" +#~ msgstr "Установлення правильних локалей" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" -msgstr "Повернення нового барвистого аватара" +#~ msgid "New colorful avatar fallback" +#~ msgstr "Повернення нового барвистого аватара" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "Початковий випуск" +#~ msgid "Initial release" +#~ msgstr "Початковий випуск" -#: data/io.elementary.initial-setup.appdata.xml.in:94 -msgid "elementary, Inc." -msgstr "elementary, Inc." +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" #~ msgid "Calculator" #~ msgstr "Калькулятор" diff --git a/po/extra/ur.po b/po/extra/ur.po index 729acb34..375e32e6 100644 --- a/po/extra/ur.po +++ b/po/extra/ur.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/uz.po b/po/extra/uz.po index f077fd81..cd0399ce 100644 --- a/po/extra/uz.po +++ b/po/extra/uz.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-03-21 22:19+0000\n" "Last-Translator: Shukrullo Turgunov \n" "Language-Team: Uzbek \n" "Language-Team: Chinese (Simplified) \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" #: data/io.elementary.initial-setup.desktop.in:3 @@ -30,8 +30,8 @@ msgid "Set up the system" msgstr "配置系统" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" -msgstr "system-os-installer" +msgid "io.elementary.initial-setup" +msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 msgid "Initial Setup" @@ -43,55 +43,89 @@ msgid "" "a language and creating a user account." msgstr "在全新安装前配置系统参数,如选择语言和创建用户账户。" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 #, fuzzy -#| msgid "Translation updates" -msgid "Minor updates:" -msgstr "翻译更新" +#| msgid "Set keyboard layout in accountsservice" +msgid "Show keyboard layouts in a separate window" +msgstr "在账户服务中设置键盘布局" -#: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 -#: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" -msgstr "翻译更新" - -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" +#: data/io.elementary.initial-setup.appdata.xml.in:36 #: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:54 +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" -msgstr "初始发行版本" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" +msgstr "新特性:" + +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" +msgstr "确认并更改设备名称" + +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "双指滑动以返回导航" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "次要更新:" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" +msgstr "翻译更新" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "elementary, Inc." +#~ msgid "Add multitouch gestures" +#~ msgstr "添加多点触控手势" + +#~ msgid "Set correct locales" +#~ msgstr "设置正确的语言环境" + +#~ msgid "New colorful avatar fallback" +#~ msgstr "新增彩色默认头像" + +#~ msgid "Initial release" +#~ msgstr "初始发行版本" + +#~ msgid "system-os-installer" +#~ msgstr "system-os-installer" + #~ msgid "Calculator" #~ msgstr "计算器" diff --git a/po/extra/zh_HK.po b/po/extra/zh_HK.po index 729acb34..375e32e6 100644 --- a/po/extra/zh_HK.po +++ b/po/extra/zh_HK.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgid "Set up the system" msgstr "" #: data/io.elementary.initial-setup.desktop.in:6 -msgid "system-os-installer" +msgid "io.elementary.initial-setup" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:7 @@ -28,49 +28,68 @@ msgid "" "a language and creating a user account." msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:29 -msgid "New features:" +#: data/io.elementary.initial-setup.appdata.xml.in:30 +#: data/io.elementary.initial-setup.appdata.xml.in:43 +#: data/io.elementary.initial-setup.appdata.xml.in:52 +#: data/io.elementary.initial-setup.appdata.xml.in:63 +msgid "Improvements:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:31 -msgid "Confirm and change device name" +#: data/io.elementary.initial-setup.appdata.xml.in:32 +msgid "Use larger icons in views" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:32 -msgid "Two-finger swipe to navigate back" +#: data/io.elementary.initial-setup.appdata.xml.in:33 +msgid "Make window resizable" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:34 -#: data/io.elementary.initial-setup.appdata.xml.in:42 -msgid "Minor updates:" +msgid "Show keyboard layouts in a separate window" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:35 +msgid "Allow hyphens in device names" msgstr "" #: data/io.elementary.initial-setup.appdata.xml.in:36 -#: data/io.elementary.initial-setup.appdata.xml.in:48 +#: data/io.elementary.initial-setup.appdata.xml.in:45 +#: data/io.elementary.initial-setup.appdata.xml.in:56 +#: data/io.elementary.initial-setup.appdata.xml.in:66 +msgid "Updated translations" +msgstr "" + #: data/io.elementary.initial-setup.appdata.xml.in:54 -msgid "Translation updates" +msgid "Offer to switch to right-click primary mouse button" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:44 -msgid "Set keyboard layout in accountsservice" +#: data/io.elementary.initial-setup.appdata.xml.in:55 +msgid "Suggest connecting to a network" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:45 -msgid "Add multitouch gestures" +#: data/io.elementary.initial-setup.appdata.xml.in:65 +msgid "Avoid political naming of certain locales" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:46 -msgid "Set correct locales" +#: data/io.elementary.initial-setup.appdata.xml.in:73 +msgid "New features:" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:47 -msgid "New colorful avatar fallback" +#: data/io.elementary.initial-setup.appdata.xml.in:75 +msgid "Confirm and change device name" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:59 -msgid "Initial release" +#: data/io.elementary.initial-setup.appdata.xml.in:76 +msgid "Two-finger swipe to navigate back" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:78 +msgid "Minor updates:" +msgstr "" + +#: data/io.elementary.initial-setup.appdata.xml.in:80 +msgid "Translation updates" msgstr "" -#: data/io.elementary.initial-setup.appdata.xml.in:94 +#: data/io.elementary.initial-setup.appdata.xml.in:89 msgid "elementary, Inc." msgstr "" diff --git a/po/extra/zh_TW.po b/po/extra/zh_TW.po index 72ecbd05..81b9cd2c 100644 --- a/po/extra/zh_TW.po +++ b/po/extra/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-calculator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Chinese (Traditional) \n" -"Language-Team: Persian \n" +"Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.18\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 -#, fuzzy +#: src/Application.vala:34 msgid "Create a User" -msgstr "ساخت حساب" - -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" +msgstr "ایجاد یک کاربر" -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -59,94 +28,187 @@ msgstr "%s…" msgid "Default" msgstr "پیشفرض" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "ساخت حساب" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "نام کامل" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "نام کاربری" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "انتخاب رمز عبور" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" -msgstr "تایید کردن پسورد" +msgstr "تایید کلمه عبور" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "نام دستگاه" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "بازگشت" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "اتمام نصب" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "رمز عبور یکسان نمیباشد" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 #, fuzzy msgid "The chosen username is already taken" msgstr "این نام کاربری قبلا گرفته شده است" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 #, fuzzy msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "نام کاربری تنها میتواند حروف کوچک و عدد را شامل شود، بدون فاصله" -#: src/Views/KeyboardLayoutView.vala:26 -#, fuzzy -#| msgid "Keyboard Layout" +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" -msgstr "قالب صفحه کلید" +msgstr "انتخاب چیدمان صفحه کلید" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" -msgstr "برای تست قالب چیزی بنویسید" +msgstr "برای امتحان چیدمان تان چیزی بنویسید" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" -msgstr "نمایش قالب صفحه کلید" +msgstr "نمایش چیدمان صفحه کلید" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "انتخاب" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "زبان ورودی" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "زبان ها" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "انتخاب زبان" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "زبان فعال کنونی" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "بعدی" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "ایجاد کاربر '%s' ناموفق بود" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "اجازه ساخت کاربر «%s»وجود ندارد" + #~ msgid "Cancel Installation" #~ msgstr "انصراف از نصب" diff --git a/po/fi.po b/po/fi.po index 235b5860..678d0d50 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-23 08:44+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2023-01-03 12:25+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" @@ -12,47 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Luo käyttäjä" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Alkuasetukset ei voinut luoda käyttäjää. Ilman käyttäjää et pysty " -"sisäänkirjautumaan, joten käyttöjärjestelmän uudelleenasennus saattaa olla " -"tarpeen." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Käyttäjän '%s' luominen epäonnistui" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Ei käyttöoikeuksia lisätä käyttäjää '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Alkuasetukset ei voinut asettaa laitenimeä." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Ei käyttöoikeuksia asettaa laitenimeä '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Ei voitu asettaa laitenimeä '%s'" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,92 +28,208 @@ msgstr "%s…" msgid "Default" msgstr "Oletus" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Luo tili" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Koko nimi" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Käyttäjätunnus" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Valitse salasana" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Vahvista salasana" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Laitteen nimi" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "Näkyvissä muille laitteille esimerkiksi Bluetooth- ja verkkojaoissa." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Takaisin" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Viimeistele määritykset" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Salasanat eivät täsmää" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Valittu käyttäjätunnus on jo käytössä" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Käyttäjätunnus voi sisältää vain pieniä kirjaimia ja numeroita ilman " "välilyöntejä" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Tilin luominen käyttäjälle “%s” epäonnistui" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Ei saatu oikeutta luoda tiliä käyttäjälle “%s”" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Alkuasetukset ei voinut luoda tätä tiliä. Ilman sitä et pysty " +"sisäänkirjautumaan, joten käyttöjärjestelmän uudelleenasennus saattaa olla " +"tarpeen." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "Ei saatu oikeutta asettaa laitteelle nimeksi “%s”" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Laitteen nimeäminen muotoon “%s” ei onnistu" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Alkuasetukset ei voinut asettaa laitenimeä." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Valitse näppäimistön asettelu" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Kirjoita testataksesi näppäimistön asettelua" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Näytä näppäimistön asettelu" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Valitse" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Syötekieli" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Kielet" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Haluatko käyttää hiiren oikeaa painiketta ensisijaisena napsautuksena?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Hiiren oikeaa painiketta käytettiin, kun odotettiin hiiren ensisijaista " +"napsautusta. Voit valita ensisijaiseksi napsautuksen tehtäväksi aina hiiren " +"oikealla painikkeella." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Oikea napsautus ensisijaiseksi" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Vasen napsautus ensisijaiseksi" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" +"Haluatko käyttää hiiren vasenta painiketta ensisijaisena napsautuksena?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Hiiren vasenta painiketta käytettiin, kun odotettiin hiiren ensisijaista " +"napsautusta. Voit valita ensisijaiseksi napsautuksen tehtäväksi aina hiiren " +"vasemmalla painikkeella." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Valitse kieli" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Parhaillaan aktiivinen kieli" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Yhdistä verkkoon" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Internetyhteys vaaditaan päivitysten vastaanottamista, uusien sovellusten " +"asentamista ja verkkopalveluihin yhdistämistä varten" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Valitse lähellä oleva langaton verkko oikean yläkulman verkkoilmaisimesta." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Yhdistä verkkokaapeli" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Ohita" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Seuraava" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Ei käyttöoikeuksia asettaa laitenimeä '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Ei voitu asettaa laitenimeä '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Käyttäjän '%s' luominen epäonnistui" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Ei käyttöoikeuksia lisätä käyttäjää '%s'" + #~ msgid "Cancel Installation" #~ msgstr "Peru asennus" @@ -200,9 +283,6 @@ msgstr "Parhaillaan aktiivinen kieli" #~ "Laitteesi ei täytä suositeltuja vaatimuksia laitteiston suhteen. Tämän " #~ "vuoksi järjestelmä saattaa toimia hitaasti." -#~ msgid "Connect to a Power Source" -#~ msgstr "Yhdistä virtalähteeseen" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/fr.po b/po/fr.po index 3fbedb23..fd372958 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-21 17:09+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-27 08:25+0000\n" "Last-Translator: Nathan \n" "Language-Team: French \n" @@ -12,47 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Créer un compte utilisateur" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"La configuration initiale n'a pas pu créer votre utilisateur. Sans cela, " -"vous ne pourrez pas vous connecter et aurez peut-être besoin de réinstaller " -"le système d'exploitation." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "La création de l'utilisateur « %s » a échoué" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Aucun permission pour créer l'utilisateur '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "La configuration initiale n'a pas pu définir votre nom d'hôte." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Aucun autorisation pour créer le nom d'hôte « %s »" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Impossible de définir le nom d'hôte « %s »" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "Par défaut" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Créer un compte" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Nom complet" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Nom d'utilisateur" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Choisissez un mot de passe" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Confirmez le mot de passe" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Nom de l'appareil" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -93,62 +60,178 @@ msgstr "" "Visible des autres appareils lors du partage, par ex. avec le Bluetooth ou " "sur le réseau." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Précédent" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Terminer la configuration" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Les mots de passe ne correspondent pas" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Le nom d'utilisateur est déjà pris" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Le nom d'utilisateur ne peut contenir que des lettres minuscules et des " "nombres, mais pas d'espaces" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "La création d'un compte pour « %s » a échoué" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Impossible d'obtenir la permission pour créer un compte pour « %s »" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"La configuration initiale n'a pas pu créer ce compte. Sans cela, vous ne " +"pourrez pas vous connecter et aurez peut-être besoin de réinstaller le " +"système d'exploitation." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "Impossible d'obtenir la permission de nommer cet appareil « %s »" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Impossible de nommer cet appareil « %s »" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "La configuration initiale n'a pas pu définir votre nom d'hôte." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Sélectionner la disposition du clavier" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Écrivez pour essayer la disposition du clavier" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Afficher la disposition du clavier" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Sélectionner" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Langue d'entrée" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Langues" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Utiliser le bouton droit de la souris pour le clic principal ?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Le bouton droit de la souris a été utilisé là où un clic principal était " +"attendu. Vous pouvez choisir de toujours utiliser le bouton droit de la " +"souris pour le clic principal." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Clic droit en tant que clic principal" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Clic gauche en tant que clic principal" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Utiliser le bouton gauche de la souris pour le clic principal ?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Le bouton gauche de la souris a été utilisé là où un clic principal était " +"attendu. Vous pouvez choisir de toujours utiliser le bouton gauche de la " +"souris pour le clic principal." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Sélectionner une langue" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Langue actuellement active" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Connexion au réseau" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Une connexion Internet est requise pour recevoir des mises à jour, installer " +"de nouvelles applications, et se connecter aux services en ligne" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Sélectionnez un réseau Wi-Fi à proximité depuis l'indicateur de réseau en " +"haut à droite." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Connectez un câble réseau" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Ignorer" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Suivant" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Aucun autorisation pour créer le nom d'hôte « %s »" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Impossible de définir le nom d'hôte « %s »" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "La création de l'utilisateur « %s » a échoué" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Aucun permission pour créer l'utilisateur '%s'" + #~ msgid "Cancel Installation" #~ msgstr "Annuler l'installation" @@ -207,9 +290,6 @@ msgstr "Langue actuellement active" #~ "peut entraîner des lenteurs ou des plantages lors de l'exécution de " #~ "certaines tâches." -#~ msgid "Connect to a Power Source" -#~ msgstr "Connecter à une source d'alimentation" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." @@ -373,9 +453,6 @@ msgstr "Langue actuellement active" #~ "Créez, redimensionnez et configurez manuellement les partitions du " #~ "disque. Cette méthode peut entraîner des pertes de données." -#~ msgid "Next" -#~ msgstr "Suivant" - #~ msgid "Disk:" #~ msgstr "Disque :" @@ -386,9 +463,6 @@ msgstr "Langue actuellement active" #~ msgid "Erase and install" #~ msgstr "Supprimer et installer" -#~ msgid "Skip" -#~ msgstr "Ignorer" - #~ msgid "Upgrade" #~ msgstr "Mise à jour" diff --git a/po/fr_CA.po b/po/fr_CA.po index 109b19a7..11d39106 100644 --- a/po/fr_CA.po +++ b/po/fr_CA.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Ethan Tremblay \n" "Language-Team: French (Canada) \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,86 +26,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/gl.po b/po/gl.po index 0f0aa0f1..86896ccd 100644 --- a/po/gl.po +++ b/po/gl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-22 17:22+0000\n" "Last-Translator: Daniel R. \n" "Language-Team: Galician \n" "Language-Team: Hebrew \n" @@ -12,46 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "יצירת חשבון" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"ההתקנה הראשונית לא הצליחה ליצור את המשתמש שלך. ללא המשתמש, לא תהיה לך אפשרות " -"להיכנס ויהיה עליך להתקין את מערכת ההפעלה מחדש." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "יצירת המשתמש ‚%s’ נכשלה" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "אין הרשאה ליצור את המשתמש ‚%s’" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "ההתקנה הראשונית לא הצליחה להגדיר את שם המארח שלך." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "אין הרשאה להגדיר את שם המארח ‚%s’" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "לא ניתן להגדיר שם מארח ‚%s’" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,90 +28,201 @@ msgstr "%s…" msgid "Default" msgstr "בררת מחדל" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "יצירת חשבון" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "שם מלא" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "שם משתמש" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "נא לבחור ססמה" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "אימות ססמה" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "שם המכשיר" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "גלוי למכשירים אחרים בעת שיתוף, למשל עם Bluetooth או דרך הרשת." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "חזרה" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "סיום ההתקנה" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "הססמאות אינן תואמות" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "שם המשתמש שנבחר כבר תפוס" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "שם המשתמש יכול להכיל אותיות לטיניות קטנות ומספרים בלבד, ללא רווחים" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "יצירת חשבון עבור „%s” נכשלה" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "לא ניתן לקבל את ההרשאות ליצירת חשבון עבור „%s”" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"ההתקנה הראשונית לא הצליחה ליצור את החשבון הזה. ללא החשבון, לא תהיה לך אפשרות " +"להיכנס ויהיה עליך להתקין את מערכת ההפעלה מחדש." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "לא ניתן לקבל הרשאות לתת את השם „%s” להתקן הזה" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "לא ניתן לתת את השם „%s” להתקן הזה" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "ההתקנה הראשונית לא הצליחה להגדיר את שם המארח שלך." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "בחירת פריסת מקלדת" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "יש להקליד כדי לבדוק את הפריסה שלך" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "הצגת פריסת המקלדת" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "בחירה" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "שפת קלט" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "שפות" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "להשתמש בלחצן העכבר הימני ללחיצה עיקרית?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"לחצן העכבר הימני שימש במקום בו הייתה אמור להיות לחיצה עיקרית. ניתן לבחור " +"להשתמש תמיד בלחצן העכבר הימני ללחיצה עיקרית." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "לחיצה ימנית כעיקרית" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "לחיצה שמאלית כעיקרית" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "להשתמש בלחצן העכבר השמאלי ללחיצה עיקרית?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"לחצן העכבר השמאלי שימש במקום בו הייתה אמור להיות לחיצה עיקרית. ניתן לבחור " +"להשתמש תמיד בלחצן העכבר השמאלי ללחיצה עיקרית." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "בחירת שפה" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "השפה הפעילה כרגע" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "חיבור לרשת" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"דרוש חיבור רשת כדי לקבל עדכונים, להתקין יישומים חדשים ולהתחבר לשירותים " +"מקוונים" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "נא לבחור רשת אלחוטית בקרבת מקום מהמחוון בפינה השמאלית העליונה." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "נא לחבר כבל רשת" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "דילוג" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "הבא" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "אין הרשאה להגדיר את שם המארח ‚%s’" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "לא ניתן להגדיר שם מארח ‚%s’" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "יצירת המשתמש ‚%s’ נכשלה" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "אין הרשאה ליצור את המשתמש ‚%s’" + #~ msgid "Cancel Installation" #~ msgstr "ביטול ההתקנה" @@ -196,9 +275,6 @@ msgstr "השפה הפעילה כרגע" #~ "ההתקן שלך לא עומד בדרישות החומרה המומלצות. מצב זה עשוי לגרום למערכת לפעול " #~ "לאט או להיתקע." -#~ msgid "Connect to a Power Source" -#~ msgstr "נא לחבר למקור חשמל" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/hi.po b/po/hi.po index 1fbc63b9..5ae3d092 100644 --- a/po/hi.po +++ b/po/hi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-03-20 00:11+0000\n" "Last-Translator: Anand Kumar \n" "Language-Team: Hindi \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Obriši" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/hu.po b/po/hu.po index bd89c8b0..80192f4f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-26 12:08+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-29 15:25+0000\n" "Last-Translator: TomiOhl \n" "Language-Team: Hungarian \n" @@ -12,46 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Felhasználó létrehozása" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"A Kezdeti telepítő nem tudta létrehozni a felhasználóját. Enélkül nem lesz " -"képes bejelentkezni és esetleg újra kell majd telepíteni a rendszert." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "A(z) '%s' felhasználó létrehozása meghiúsult" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Nincs jogosultsága létrehozni a(z) '%s' felhasználót" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "A Kezdeti telepítő nem tudta beállítani a gépnevet." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Nincs jogosultság beállítani a(z) %s gépnevet" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Nem sikerült beállítani a(z) %s gépnevet" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "Alapértelmezett" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Felhasználó létrehozása" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Teljes név" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Felhasználónév" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Válasszon egy jelszót" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Jelszó megerősítése" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Készüléknév" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -92,61 +60,178 @@ msgstr "" "A többi készülék számára látható megosztáskor, például Bluetooth-on vagy " "hálózaton keresztül." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Vissza" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Beállítás befejezése" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "A jelszavak nem egyeznek" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "A választott felhasználónév már foglalt" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "A felhasználónév csak kisbetűket és számokat tartalmazhat, szóközöket nem" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Fiók létrehozása \"%s\" számára sikertelen" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Nem sikerült engedélyt szerezni \"%s\" fiókjának létrehozásához" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"A Kezdeti telepítő nem tudta létrehozni a fiókot. Enélkül nem lesz képes " +"bejelentkezni és esetleg újra kell majd telepíteni a rendszert." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" +"Nem sikerült engedélyt szerezni a készülék nevének megváltoztatásához erre: " +"\"%s\"" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "\"%s\" nem állítható be készüléknévként" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "A Kezdeti telepítő nem tudta beállítani a gépnevet." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Billentyűzetkiosztás választása" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Írjon ide, hogy tesztelje a kiosztást" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Billentyűzetkiosztás megjelenítése" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Kiválasztás" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Beviteli nyelv" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Nyelvek" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Jobb egérgomb használata az elsődleges kattintásokhoz?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"A jobb egérgombot használta, ahol egy elsődleges kattintásra volt szükség. " +"Beállíthatja, hogy mindig a jobb oldali egérgombot használja az elsődleges " +"kattintásokhoz." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Jobb gomb elsődlegesként" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Bal gomb elsődlegesként" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Bal egérgomb használata az elsődleges kattintásokhoz?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"A bal egérgombot használta, ahol egy elsődleges kattintásra volt szükség. " +"Beállíthatja, hogy mindig a bal oldali egérgombot használja az elsődleges " +"kattintásokhoz." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Nyelv kiválasztása" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Jelenlegi nyelv" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Csatlakozás hálózathoz" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Internetkapcsolat szükséges a frissítések fogadásához, új alkalmazások " +"telepítéséhez és az online szolgáltatásokhoz való kapcsolódáshoz" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Válasszon egy közeli vezetéknélküli kapcsolatot a hálózati indikátorról jobb " +"felül." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Csatlakozás egy hálózati kábellel" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Kihagyás" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Következő" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Nincs jogosultság beállítani a(z) %s gépnevet" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Nem sikerült beállítani a(z) %s gépnevet" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "A(z) '%s' felhasználó létrehozása meghiúsult" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Nincs jogosultsága létrehozni a(z) '%s' felhasználót" + #~ msgid "Cancel Installation" #~ msgstr "Telepítés megszakítása" diff --git a/po/hy.po b/po/hy.po index 167617c8..bfa38c9b 100644 --- a/po/hy.po +++ b/po/hy.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:28+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:39+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Ետ" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/id.po b/po/id.po index e418b8d9..baddc63a 100644 --- a/po/id.po +++ b/po/id.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-11-30 20:24+0000\n" "Last-Translator: Eri Hidayat \n" "Language-Team: Indonesian \n" "Language-Team: LANGUAGE \n" @@ -17,41 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -60,86 +30,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/is.po b/po/is.po index 2eb887ef..32c67557 100644 --- a/po/is.po +++ b/po/is.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:29+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,90 +26,177 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/it.po b/po/it.po index 0428d910..9673e8c7 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-07-01 22:05+0000\n" "Last-Translator: Fabio Zaramella \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" @@ -12,46 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "ユーザーを作成" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"アカウントを作成できませんでした。アカウントがないと、ログインできず、OS の再" -"インストールが必要になる可能性があります。" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "ユーザー '%s' の作成に失敗しました" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "ユーザー '%s' を作成するために必要な権限がありません" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "ホスト名を設定できませんでした。" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "ホスト名 '%s' を設定するために必要な権限がありません" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "ホスト名 '%s' を設定できません" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "デフォルト" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "アカウントを作成" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "フルネーム" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "ユーザー名" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "パスワードを入力" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "パスワードを確認" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "デバイス名" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -92,61 +60,173 @@ msgstr "" "Bluetooth やネットワーク経由で共有する場合に、ほかのデバイスで表示される名前" "です。" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "戻る" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "セットアップを完了" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "パスワードが一致しません" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "指定されたユーザー名はすでに使われています" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "ユーザー名には小文字と数字のみが許可されます。空白は使用しないでください" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "アカウント “%s” を作成できませんでした" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "アカウント “%s” の作成に必要な権限を取得できませんでした" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"このアカウントを作成できませんでした。アカウントがないとログインできないた" +"め、OS の再インストールが必要になる可能性があります。" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "このデバイス名を “%s” に設定するのに必要な権限を取得できませんでした" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "このデバイス名を “%s” に設定できませんでした" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "ホスト名を設定できませんでした。" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "キーボードレイアウトを選択" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "入力してレイアウトを試してください" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "キーボードレイアウトを表示" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "選択" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "入力言語" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "言語" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "マウスの右ボタンを主ボタンに使用しますか?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"主ボタンによるクリックが行われる箇所で、マウスの右ボタンがクリックされまし" +"た。今後マウスの右ボタンを主ボタンとして使うように選択できます。" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "右ボタンを主ボタンとして使う" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "左ボタンを主ボタンとして使う" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "マウスの左ボタンを主ボタンに使用しますか?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"主ボタンによるクリックが行われる箇所で、マウスの左ボタンがクリックされまし" +"た。今後マウスの左ボタンを主ボタンとして使うように選択できます。" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" -msgstr "言語を選択してください" +msgstr "言語を選択" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "現在使用可能な言語" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "ネットワークに接続" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"アップデートの取得や、新しいアプリのインストール、オンラインサービスへの接続" +"には、インターネット接続が必要です" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"右上のネットワークインジケーターから、付近の無線ネットワークを選択します。" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "ネットワークケーブルを接続します" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "スキップ" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "次へ" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "ホスト名 '%s' を設定するために必要な権限がありません" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "ホスト名 '%s' を設定できません" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "ユーザー '%s' の作成に失敗しました" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "ユーザー '%s' を作成するために必要な権限がありません" + #~ msgid "Cancel Installation" #~ msgstr "インストールをキャンセル" diff --git a/po/jv.po b/po/jv.po index e447e04a..9aa4e5fd 100644 --- a/po/jv.po +++ b/po/jv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:28+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Busak" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/ka.po b/po/ka.po index ad00d742..6c2d8a16 100644 --- a/po/ka.po +++ b/po/ka.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-02-11 00:08+0000\n" "Last-Translator: Lasha-Giorgi Esebua \n" "Language-Team: Georgian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,90 +26,177 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/ko.po b/po/ko.po index 70a028ea..17dfd1b3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-05-05 18:32+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-08-07 18:13+0000\n" "Last-Translator: Jung-Kyu Park \n" "Language-Team: Korean \n" @@ -12,47 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.6.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "사용자 계정 만들기" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"초기 설정에서 사용자 계정이 만들어지지 않습니다. 사용자 계정이 없으면, 로그인" -"할 수 없으며 OS를 다시 설치해야 할 수도 있습니다." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "'%s' 사용자를 만들지 못했습니다" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "'%s' 사용자를 만들 수 있는 권한이 없습니다" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "'%s' 사용자를 만들 수 있는 권한이 없습니다" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,92 +28,205 @@ msgstr "%s…" msgid "Default" msgstr "기본" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "계정 만들기" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "이름" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "사용자 이름" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "비밀번호 설정" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "비밀번호 확인" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "장치 이름" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." -msgstr "" +msgstr "공유할 때 다른 장치에서 볼 수 있습니다, 예) 블루투스나 네트워크에서." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "뒤로" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "설정 끝내기" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "비밀번호가 맞지 않습니다" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "사용자 이름이 이미 사용 중입니다" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "사용자 이름은 여백 없이 소문자와 숫자로만 구성할 수 있습니다" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 #, fuzzy -#| msgid "Keyboard Layout" +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"초기 설정에서 사용자 계정이 만들어지지 않습니다. 사용자 계정이 없으면, 로그인" +"할 수 없으며 OS를 다시 설치해야 할 수도 있습니다." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "초기 설정에서 호스트 이름을 설정할 수 없습니다." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" -msgstr "키보드 배치" +msgstr "키보드 레이아웃 선택" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "타이핑해서 키보드 배치를 확인해보세요" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" -msgstr "키보드 배치 보기" +msgstr "키보드 레이아웃 보기" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "선택" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "입력 언어" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "언어" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "기본 클릭으로 마우스 오른쪽 버튼을 사용하시겠습니까?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"마우스 오른쪽 버튼은 기본 클릭이 예상되는 곳에 사용되었습니다. 기본 클릭에 항" +"상 마우스 오른쪽 버튼을 사용하도록 선택할 수 있습니다." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "오른쪽 클릭 기본" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "왼쪽 클릭 기본" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "기본 클릭으로 마우스 왼쪽 버튼을 사용하시겠습니까?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"마우스 왼쪽 버튼은 기본 클릭이 예상되는 곳에 사용되었습니다. 기본 클릭에 항" +"상 마우스 왼쪽 버튼을 사용하도록 선택할 수 있습니다." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "언어 선택" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "현재 사용하고 있는 언어" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "네트워크 연결" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"업데이트, 새로운 앱 설치, 온라인 서비스 연결 등을 하려면 인터넷에 연결해야 합" +"니다" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "오른쪽 상단의 네트워크 표시기에서 가까운 무선 네트워크를 선택합니다." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "네크워크 케이블 연결" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "건너 뛰기" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "다음" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "'%s' 호스트 이름 설정 권한이 없습니다" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "'%s' 호스트 이름을 설정할 수 없습니다" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "'%s' 사용자를 만들지 못했습니다" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "'%s' 사용자를 만들 수 있는 권한이 없습니다" + #~ msgid "Cancel Installation" #~ msgstr "설치 취소" diff --git a/po/ku.po b/po/ku.po index f089ce39..7cabfb18 100644 --- a/po/ku.po +++ b/po/ku.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-02-05 00:11+0000\n" "Last-Translator: Rokar \n" "Language-Team: Kurdish \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Zeréck-Tast" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/lg.po b/po/lg.po index 8ba97799..bb2e6fd6 100644 --- a/po/lg.po +++ b/po/lg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-01-20 19:55+0000\n" "Last-Translator: Laurence Bahiirwa \n" "Language-Team: Ganda \n" "Language-Team: Lithuanian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Dzēst iepriekšējo simbolu" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/mg.po b/po/mg.po index 7b36e269..4e9d4910 100644 --- a/po/mg.po +++ b/po/mg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Noel Lalaina \n" "Language-Team: Malagasy \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Избриши" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/mn.po b/po/mn.po index 6ced2c37..82418c71 100644 --- a/po/mn.po +++ b/po/mn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:28+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Бакспейс" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/mo.po b/po/mo.po index 74d67ee0..4a57fcd9 100644 --- a/po/mo.po +++ b/po/mo.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-05-26 10:54+0000\n" "Last-Translator: Romanic Ion Nicușor \n" "Language-Team: Moldovan \n" "Language-Team: Marathi \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Padam" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/my.po b/po/my.po index 7d436151..9facda3e 100644 --- a/po/my.po +++ b/po/my.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-06-26 17:01+0000\n" "Last-Translator: Bone Pyae Sone \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "Backspace" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/nb.po b/po/nb.po index 617e3a6e..0f3c20ef 100644 --- a/po/nb.po +++ b/po/nb.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-08-21 17:09+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-06-18 21:35+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål \n" @@ -15,45 +15,11 @@ msgstr "" "X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Opprett en bruker" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Innledende oppstart kunne ikke opprette din bruker. Uten den, vil du ikke " -"kunne logge inn, og må kanskje reinstallere OS-et." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Oppretting av brukeren \"%s\" mislyktes" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Ingen tilgang til oppretting av brukeren \"%s\"" - -#: src/Utils.vala:188 -#, fuzzy -msgid "Initial Setup could not set your hostname." -msgstr "Førstegangsoppsettet kunne ikke sette vertsnavnet ditt." - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "Ingen tilgang til oppretting av brukeren \"%s\"" - -#: src/Utils.vala:202 -#, fuzzy, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Kunne ikke sette vertsnavn «%s»" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -62,92 +28,208 @@ msgstr "%s…" msgid "Default" msgstr "Forvalg" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Opprett en konto" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Fullt navn" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Brukernavn" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Velg et passord" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Bekreft passord" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 #, fuzzy msgid "Device name" msgstr "Enhetsnavn" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" "Synlig for andre enheter ved deling. F.eks med Blåtann over nettverket." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Tilbake" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Fullfør oppsett" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Passordene samsvarer ikke" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Brukernavnet du har valgt er allerede i bruk" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "Brukernavnet kan kun inneholde små bokstaver og tall, uten mellomrom" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Innledende oppstart kunne ikke opprette din bruker. Uten den, vil du ikke " +"kunne logge inn, og må kanskje reinstallere OS-et." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +#, fuzzy +msgid "Initial Setup could not set your hostname." +msgstr "Førstegangsoppsettet kunne ikke sette vertsnavnet ditt." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Velg tastaturoppsett" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Skriv for å teste ditt oppsett" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Vis tastaturoppsett" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Velg" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Inndataspråk" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Språk" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Høyre museknapp for primærklikk?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Høyre museknapp ble brukt der et primærklikk var forventet. Du kan velge å " +"alltid bruke høyre museknapp for primærklikk." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Høyreklikk som primærklikk" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Venstreklikk som primærklikk" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Venstre museknapp for primærklikk?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Venstre museknapp ble brukt der et primærklikk var forventet. Du kan velge å " +"alltid bruke venstre museknapp for primærklikk." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Velg et språk" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Nåværende språk" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Koble til nettverk" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Tilkobling til Internett kreves for å motta oppgraderinger, installere nye " +"programmer, og koble til nettbaserte tjenester" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "Velg et trådløsnettverk fra nettverksindikatoren øverst til høyre." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Plugg i en nettverkskabel" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Hopp over" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Neste" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Ingen tilgang til å sette vertsnavnet «%s»" + +#, fuzzy, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Kunne ikke sette vertsnavnet «%s»" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Oppretting av brukeren \"%s\" mislyktes" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Ingen tilgang til oppretting av brukeren \"%s\"" + #~ msgid "Cancel Installation" #~ msgstr "Avbryt installasjon" @@ -205,9 +287,6 @@ msgstr "Nåværende språk" #~ "Din enhet svarer ikke til de anbefalte maskinvarekravene. Dette kan " #~ "forårsake at ting går tregt eller henger." -#~ msgid "Connect to a Power Source" -#~ msgstr "Koble til strømkilde" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/nl.po b/po/nl.po index 57625b2a..bf64f25e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-12-30 06:47+0000\n" -"Last-Translator: Jaimie85 \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-05-22 06:09+0000\n" +"Last-Translator: Dennis ten Hoove \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -12,48 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:40+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Gebruiker aanmaken" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Eerste Installatie kon de gebruiker niet aanmaken. Zonder deze gebruiker " -"kunt u niet inloggen en moet u mogelijk het besturingssysteem opnieuw " -"installeren." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Gebruiker '%s' aanmaken is mislukt" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "U heeft geen bevoegdheid om gebruiker '%s' aan te maken" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "U heeft geen bevoegdheid om gebruiker '%s' aan te maken" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -62,94 +28,213 @@ msgstr "%s…" msgid "Default" msgstr "Standaard" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Account aanmaken" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Volledige naam" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Gebruikersnaam" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Kies een wachtwoord" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Wachtwoord bevestigen" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "Computernaam" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" +"Zichtbaar voor andere apparaten wanneer je bestanden deelt, bijvoorbeeld via " +"Bluetooth of over het netwerk." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Terug" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Installatie voltooien" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Wachtwoorden komen niet overeen" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Deze gebruikersnaam wordt al gebruikt" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Een gebruikersnaam kan alleen kleine letters en cijfers bevatten, zonder " "spaties" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 #, fuzzy -#| msgid "Keyboard Layout" +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Opzetprogramma kon de gebruiker niet aanmaken. Zonder deze gebruiker kunt u " +"niet inloggen en moet u mogelijk het besturingssysteem opnieuw installeren." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Het opzetprogramma kon uw hostnaam niet instellen." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" -msgstr "Toetsenbordindeling" +msgstr "Selecteer toetsenbordindeling" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Typ om uw indeling uit te proberen" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Toon toetsenbordindeling" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Selecteer" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Invoertaal" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Talen" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "De rechter muisknop gebruiken als primaire muisklik?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"De rechter muisknop was gebruikt daar waar een primaire muisklik was " +"verwacht. U kunt kiezen om altijd de rechter muisknop te gebruiken als " +"primaire muisklik." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Rechter muisklik als primair" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Linker muisklik als primair" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Gebruik de linker muisknop als primaire klik?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"De linker muisknop was gebruikt daar waar een primaire muisklik was " +"verwacht. U kunt kiezen om altijd de linker muisknop te gebruiken als " +"primaire muisklik." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Selecteer een taal" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Momenteel actieve taal" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Verbind met netwerk" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Een internet verbinding is vereist om updates te ontvangen, nieuwe apps te " +"installeren en met online diensten te verbinden" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Selecteer een draadloos netwerk via de netwerk indicator rechtsboven in het " +"scherm." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Verbind een netwerkkabel" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Overslaan" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Volgende" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Geen bevoegdheid om de hostnaam '%s' in te stellen" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Kon hostnaam '%s' niet instellen" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Gebruiker '%s' aanmaken is mislukt" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "U heeft geen bevoegdheid om gebruiker '%s' aan te maken" + #~ msgid "Cancel Installation" #~ msgstr "Installatie annuleren" diff --git a/po/nn.po b/po/nn.po index 6a13c22d..338c1cee 100644 --- a/po/nn.po +++ b/po/nn.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2020-07-25 01:12+0000\n" "Last-Translator: Martin Myrvold \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Punjabi 1;\n" "X-Generator: Weblate 4.4.2\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "ਕੋਈ ਵਰਤੋਂਕਾਰ ਬਣਾਓ" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"ਸ਼ੁਰੂਆਤੀ ਸੈੱਟਅਪ ਤੁਹਾਡੇ ਵਰਤੋਂਕਾਰ ਨੂੰ ਬਣਾ ਨਹੀਂ ਸਕਿਆ। ਇਸ ਤੋਂ ਬਿਨਾਂ ਤੁਸੀਂ ਲਾਗਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਅਤੇ ਹੋ " -"ਸਕਦੈ ਤੁਹਾਨੂੰ ਅਪਰੇਟਿੰਗ ਸਿਸਟਮ ਦੁਬਾਰਾ ਇੰਸਟਾਲ ਕਰਨਾ ਪਵੇ।" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "ਵਰਤੋਂਕਾਰ '%s' ਬਣਾਉਣਾ ਨਾਕਾਮ ਰਿਹਾ" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "ਵਰਤੋਂਕਾਰ '%s' ਬਣਾਉਣ ਦੀ ਇਜਾਜ਼ਤ ਨਹੀਂ ਹੈ" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "ਵਰਤੋਂਕਾਰ '%s' ਬਣਾਉਣ ਦੀ ਇਜਾਜ਼ਤ ਨਹੀਂ ਹੈ" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -65,86 +32,192 @@ msgstr "%s…" msgid "Default" msgstr "ਡਿਫ਼ਾਲਟ" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "ਕੋਈ ਖਾਤਾ ਬਣਾਓ" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "ਪੂਰਾ ਨਾਂ" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "ਵਰਤੋਂਕਾਰ-ਨਾਂ" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "ਪਾਸਵਰਡ ਚੁਣੋ" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "ਪਾਸਵਰਡ ਤਸਦੀਕ ਕਰੋ" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "ਪਿੱਛੇ ਜਾਓ" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "ਸੈੱਟਅਪ ਮੁਕਾਓ" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "ਪਾਸਵਰਡ ਮੇਲ ਨਹੀਂ ਖਾਂਦੇ" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "ਚੁਣਿਆ ਹੋਇਆ ਵਰਤੋਂਕਾਰ-ਨਾਂ ਪਹਿਲਾਂ ਹੀ ਕਿਸੇ ਨੇ ਵਰਤਿਆ ਹੋਇਐ" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "ਵਰਤੋਂਕਾਰ-ਨਾਂ ਵਿੱਚ ਸਿਰਫ਼ ਅੰਗਰੇਜ਼ੀ ਦੇ ਛੋਟੇ ਅੱਖਰ ਅਤੇ ਨੰਬਰ ਵਰਤਣ ਦੀ ਇਜਾਜ਼ਤ ਹੈ, ਬਿਨਾਂ ਸਪੇਸ ਤੋਂ" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"ਸ਼ੁਰੂਆਤੀ ਸੈੱਟਅਪ ਤੁਹਾਡੇ ਵਰਤੋਂਕਾਰ ਨੂੰ ਬਣਾ ਨਹੀਂ ਸਕਿਆ। ਇਸ ਤੋਂ ਬਿਨਾਂ ਤੁਸੀਂ ਲਾਗਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਅਤੇ ਹੋ " +"ਸਕਦੈ ਤੁਹਾਨੂੰ ਅਪਰੇਟਿੰਗ ਸਿਸਟਮ ਦੁਬਾਰਾ ਇੰਸਟਾਲ ਕਰਨਾ ਪਵੇ।" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "ਕੀਬੋਰਡ ਲੇਆਊਟ ਚੁਣੋ" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "ਲੇਆਊਟ ਟੈਸਟ ਕਰਨ ਲਈ ਟਾਈਪ ਕਰੋ" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "ਕੀਬੋਰਡ ਲੇਆਊਟ ਵਿਖਾਓ" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "ਚੁਣੋ" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "ਟਾਈਪਿੰਗ ਲਈ ਭਾਸ਼ਾ" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "ਭਾਸ਼ਾਵਾਂ" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "ਕੋਈ ਭਾਸ਼ਾ ਚੁਣੋ" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "ਮੌਜੂਦਾ ਚੁਣੀ ਹੋਈ ਭਾਸ਼ਾ" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + +#, fuzzy, c-format +#~| msgid "No Permission to Create User '%s'" +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "ਵਰਤੋਂਕਾਰ '%s' ਬਣਾਉਣ ਦੀ ਇਜਾਜ਼ਤ ਨਹੀਂ ਹੈ" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "ਵਰਤੋਂਕਾਰ '%s' ਬਣਾਉਣਾ ਨਾਕਾਮ ਰਿਹਾ" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "ਵਰਤੋਂਕਾਰ '%s' ਬਣਾਉਣ ਦੀ ਇਜਾਜ਼ਤ ਨਹੀਂ ਹੈ" diff --git a/po/pl.po b/po/pl.po index 99cd9cdf..59e9055d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,57 +2,25 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-09-27 16:18+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-24 12:25+0000\n" "Last-Translator: Marcin Serwin \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Utwórz konto użytkownika" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Instalator nie mógł utworzyć konta. Bez niego, nie będziesz mógł sie " -"zalogować i może zainstalować ponownie system." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Tworzenie użytkownika '%s' nie powiodło się" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Brak uprawnień do stworzenia użytkownika '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Instalator nie mógł ustawić twojej nazwy hosta." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Brak uprawnień do ustawienia nazwy hosta '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Nie można ustawić nazwy hosta '%s'" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,31 +29,31 @@ msgstr "%s…" msgid "Default" msgstr "Domyślny" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Utwórz konto" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Imię i nazwisko" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Nazwa użytkownika" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Wybierz hasło" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Potwierdź hasło" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Nazwa urządzenia" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -93,60 +61,174 @@ msgstr "" "Widoczny dla innych urządzeń podczas udostępniania, np. za pomocą Bluetooth " "lub przez sieć." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Cofnij" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Zakończ ustawienia" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Hasła do siebie nie pasują" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Wybrana nazwa użytkownika jest już zajęta" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "Nazwa użytkownika musi zawierać tylko małe litery i cyfry, bez spacji" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Tworzenie konta dla „%s” nie powiodło się" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Nie udało się uzyskać uprawnień do stworzenia konta dla „%s”" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Instalator nie mógł utworzyć tego konta. Bez niego, nie będziesz w stanie " +"się zalogować i możesz musieć zainstalować system ponownie." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "Nie udało się uzyskać uprawnień do nazwania tego urządzenia „%s”" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Nie udało się nazwać tego urządzenia „%s”" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Instalator nie mógł ustawić twojej nazwy hosta." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Wybierz układ klawiatury" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Napisz, aby wypróbować swój układ" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Pokaż układ klawiatury" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Wybierz" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Wpisz język" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Języki" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Używać prawego przycisku myszy jako głównego?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Prawy przycisk myszy został wykryty w miejscu gdzie oczekiwano przycisku " +"głównego. Możesz wybrać by zawsze używać prawego przycisku myszy jako " +"przycisku głównego." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Prawy przycisk jako główny" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Lewy przycisk jako główny" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Używaj lewego przycisku myszy jako głównego?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Lewy przycisk myszy został wykryty w miejscu gdzie oczekiwano przycisku " +"głównego. Możesz wybrać by zawsze używać lewego przycisku myszy jako " +"przycisku głównego." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Wybierz język" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Aktywny język" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Podłącz z siecią" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Połączenie z internetem jest wymagane aby otrzymywać aktualizacje, " +"instalować nowe aplikacje i do łączenia z usługami online" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Wybierz pobliską sieć bezprzewodową z indykatora sieci w prawym górnym rogu." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Podłącz kabel sieciowy" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Pomiń" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Dalej" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Brak uprawnień do ustawienia nazwy hosta '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Nie można ustawić nazwy hosta '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Tworzenie użytkownika '%s' nie powiodło się" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Brak uprawnień do stworzenia użytkownika '%s'" + #~ msgid "Cancel Installation" #~ msgstr "Anuluj instalację" @@ -203,9 +285,6 @@ msgstr "Aktywny język" #~ "Twoje urządzenie nie spełnia zalecanych wymagań sprzętowych. Może działać " #~ "zbyt wolno lub się zawieszać." -#~ msgid "Connect to a Power Source" -#~ msgstr "Podłącz do źródła zasilania" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/pt.po b/po/pt.po index db915f46..525d1525 100644 --- a/po/pt.po +++ b/po/pt.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-07-14 21:57+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-04-30 22:25+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" @@ -15,44 +15,11 @@ msgstr "" "X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Criar um Utilizador" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"A configuração inicial não pôde criar o seu utilizador. Sem isso, não será " -"capaz de iniciar sessão e poderá ter de reinstalar o sistema operativo." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Falha ao criar o Utilizador '%s'" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Sem permissão para criar o utilizador '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "Sem permissão para criar o utilizador '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,92 +28,213 @@ msgstr "%s…" msgid "Default" msgstr "Predefinido" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Criar uma Conta" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Nome Completo" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Nome de utilizador" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Escolha uma palavra-passe" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Confirmar palavra-passe" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "Nome do dispositivo" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" +"Visível a outros dispositivos quando partilhado por ex: com Bluetooth ou " +"através da rede." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Voltar" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Terminar configuração" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "As palavras-passe não coincidem" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Este nome de utilizador já está a ser utilizado" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Um nome de utilizador apenas pode conter letras minúsculas e números, sem " "espaços" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"A configuração inicial não pôde criar o seu utilizador. Sem isso, não será " +"capaz de iniciar sessão e poderá ter de reinstalar o sistema operativo." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "A configuração inicial não conseguiu definir o nome de utilizador." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Selecionar o esquema de teclado" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Escreva para testar o esquema de teclado" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Mostrar o esquema de teclado" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Selecione" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Idioma de introdução" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Idiomas" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Usar o botão direito do rato para o clique primário?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"O botão direito do rato foi utilizado onde se esperava um clique primário. " +"Pode optar por utilizar sempre o botão direito do rato para o clique " +"primário." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Botão direito do rato como primário" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Botão esquerdo do rato como primário" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Usar o botão esquerdo do rato para clique primário?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"O botão esquerdo do rato foi utilizado onde se esperava um clique primário. " +"Pode optar por utilizar sempre o botão esquerdo do rato para o clique " +"primário." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Selecionar um idioma" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Idioma atualmente ativo" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Ligar rede" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"É necessária uma ligação à Internet para receber atualizações, instalar " +"novas aplicações e ligar-se a serviços online" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Escolha uma rede sem fios próxima a partir do indicador de rede no canto " +"superior direito." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Ligar um cabo de rede" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Ignorar" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Seguinte" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Sem permissão para definir o nome da máquina '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Não foi possível definir o nome da máquina '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Falha ao criar o Utilizador '%s'" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Sem permissão para criar o utilizador '%s'" + #~ msgid "Cancel Installation" #~ msgstr "Cancelar Instalação" diff --git a/po/pt_BR.po b/po/pt_BR.po index 7bfc8892..4859fd90 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-07-15 22:57+0000\n" "Last-Translator: lucaspifonseca \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-24 12:25+0000\n" +"Last-Translator: кубик круглый \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,46 +13,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Создать пользователя" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Начальная установка не может создать вашего пользователя. Без этого вы не " -"сможете войти в систему и, возможно, придется переустановить ОС." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Не удалось создать пользователя «%s»" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Недостаточно прав для создания пользователя «%s»" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Начальная установка не может установить Ваше название хоста." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Недостаточно прав для создания названия хоста «%s»" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Не удалось установить название хоста «%s»" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,31 +29,31 @@ msgstr "%s…" msgid "Default" msgstr "По умолчанию" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Создать учётную запись" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Полное имя" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Имя пользователя" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Выберите пароль" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Подтвердите пароль" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Имя устройства" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -93,61 +61,176 @@ msgstr "" "Видимая для других устройств при совместном использовании, например, с " "помощью Bluetooth или по сети." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Назад" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Завершить установку" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Пароли не совпадают" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Выбранное имя пользователя уже занято" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" "Имя пользователя должно содержать только строчные буквы и цифры, без пробелов" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Не удалось создать учётную запись «%s»" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Не удалось получить разрешение на создание учётной записи для «%s»" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Начальной настройке не удалось создать учётную запись. Без неё вы не сможете " +"войти в систему и, вероятно, вам придётся переустановить ОС." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" +"Не удалось получить разрешение на установку имени «%s» этому устройству" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Не удалось установить имя «%s» этому устройству" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Начальная установка не может установить ваше название хоста." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Выберите раскладку клавиатуры" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" -msgstr "Введите что-то для проверки раскладки" +msgstr "Проверьте вашу раскладку здесь" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Показать раскладку клавиатуры" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Выбрать" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Язык ввода" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Языки" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Использовать правую кнопку мыши как основную?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Правая кнопка мыши была задействована в месте, где ожидалось нажатие " +"основной клавишей. Вы можете выбрать постоянное использование правой кнопки " +"мыши как основной." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Правая кнопка мыши как основная" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Левая кнопка мыши как основная" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Использовать левую кнопку мыши как основную?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Левая кнопка мыши была задействована в месте, где ожидалось нажатие основной " +"клавишей. Вы можете выбрать постоянное использование левой кнопки мыши как " +"основной." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Выберите язык" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Текущий язык" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Подключится к Интернету" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Для получения обновлений, установки новых приложений и подключения к онлайн-" +"сервисам нужно соединение с Интернетом" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Выберите беспроводную сеть с помощью индикатора сети в правом верхнем углу." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Подключите сетевой кабель" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Пропустить" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Далее" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Недостаточно прав для создания названия хоста «%s»" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Не удалось установить название хоста «%s»" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Не удалось создать пользователя «%s»" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Недостаточно прав для создания пользователя «%s»" + #~ msgid "Cancel Installation" #~ msgstr "Отменить установку" diff --git a/po/sa.po b/po/sa.po index d4522eb5..81b0f6d5 100644 --- a/po/sa.po +++ b/po/sa.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-25 22:12+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,86 +26,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/si.po b/po/si.po index 0bdee7a0..d6928ac6 100644 --- a/po/si.po +++ b/po/si.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2021-03-04 15:31+0000\n" "Last-Translator: HelaBasa \n" "Language-Team: Sinhala \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,44 +15,11 @@ msgstr "" "X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Vytvoriť používateľský účet" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"V prvotnom nastavení sa nepodarilo vytvoriť váš používateľský účet. Bez neho " -"sa nebudete môcť prihlásiť a možno bude potrebné preinštalovať operačný " -"systém." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Vytvorenie používateľa „%s“ sa nepodarilo" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Nemáte povolenie na vytvorenie účtu ‚%s‘" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Prvotnému nastaveniu sa nepodarilo nastaviť váš názov hostiteľa." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Nemáte povolenie na nastavenie názvu hostiteľa ‚%s‘" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Nastavenie názvu hostiteľa ‚%s‘ sa nepodarilo" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "Predvolený" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Vytvoriť účet" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Celé meno" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Používateľské meno" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Zvoľte heslo" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Potvrďte heslo" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Názov zariadenia" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -93,60 +60,179 @@ msgstr "" "Viditeľné pre iné zariadenia počas zdieľania, napríklad cez Bluetooth či " "sieť." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Späť" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Dokončiť nastavenie" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Heslá sa nezhodujú" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "Zvolené používateľské meno je už obsadené" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" -msgstr "Používateľské meno môže obsahovať iba malé písmená a čísla, bez medzier" +msgstr "" +"Používateľské meno môže obsahovať iba malé písmená a čísla, bez medzier" + +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"V prvotnom nastavení sa nepodarilo vytvoriť váš používateľský účet. Bez neho " +"sa nebudete môcť prihlásiť a možno bude potrebné preinštalovať operačný " +"systém." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Prvotnému nastaveniu sa nepodarilo nastaviť váš názov hostiteľa." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Vyberte rozloženie klávesnice" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Píšte pre otestovanie vášho rozloženia" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Zobraziť rozloženie klávesnice" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Vybrať" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Vstupný jazyk" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Jazyky" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Nastaviť pravé tlačidlo myši ako primárne tlačidlo?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Pravé tlačidlo myši bolo používané, keď sa očakávalo stlačenie primárneho " +"tlačidla myši. Môžete si vybrať, či chcete používať pravé tlačidlo myši ako " +"primárne namiesto ľavého tlačidla." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Kliknutie pravým tlačidlom ako primárne" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Kliknutie ľavým tlačidlom ako primárne" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Nastaviť ľavé tlačidlo myši ako primárne tlačidlo?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Ľavé tlačidlo myši bolo používané, keď sa očakávalo stlačenie primárneho " +"tlačidla myši. Môžete si vybrať, či chcete používať ľavé tlačidlo myši ako " +"primárne namiesto pravého tlačidla." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Vyberte jazyk" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Práve používaný jazyk" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Pripojte sa do siete" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Pripojenie na internet je potrebné pre získavanie aktualizácií, inštaláciu " +"nových aplikácií a pripojeniu k online službám" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "Vyberte blízku bezdrôtovú sieť z indikátora siete vpravo hore." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Pripojte sieťový kábel" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Preskočiť" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Ďalej" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Nemáte povolenie na nastavenie názvu hostiteľa ‚%s‘" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Nastavenie názvu hostiteľa ‚%s‘ sa nepodarilo" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Vytvorenie používateľa „%s“ sa nepodarilo" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Nemáte povolenie na vytvorenie účtu ‚%s‘" + #~ msgid "Cancel Installation" #~ msgstr "Zrušiť inštaláciu" diff --git a/po/sl.po b/po/sl.po index a13e0e8e..5f7f3219 100644 --- a/po/sl.po +++ b/po/sl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2020-01-08 00:07+0000\n" "Last-Translator: Jernej Virag \n" "Language-Team: Slovenian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,90 +26,177 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/sq.po b/po/sq.po index 468d1aec..54f29208 100644 --- a/po/sq.po +++ b/po/sq.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-05-01 03:43+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Silesian =20) ? 1 : 2;\n" "X-Generator: Weblate 3.9.1\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Stwōrz używocza" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Stympno kōnfiguracyjo niy mogła stworzić używocza. Bez tego niy poradzisz " -"sie zalogować i możliwe, że bydzie trza zainstalować na nowo systym." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Tworzynie używocza „%s” sie niy podarziło" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Brak uprawniyń na stworzynie używocza „%s”" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "Brak uprawniyń na stworzynie używocza „%s”" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,88 +27,194 @@ msgstr "%s…" msgid "Default" msgstr "Wychodno" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Stwōrz kōnto" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Miano i nazwisko" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Miano ôd używocza" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Ôbier hasło" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Potwiyrdź hasło" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Nazod" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Skōńcz kōnfiguracyjo" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Hasła niy sztymujōm" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "To miano już je zajynte" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "Miano ôd używocza musi mieć ino małe litery i numery, żodnych spacyji" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Stympno kōnfiguracyjo niy mogła stworzić używocza. Bez tego niy poradzisz " +"sie zalogować i możliwe, że bydzie trza zainstalować na nowo systym." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 #, fuzzy #| msgid "Keyboard Layout" msgid "Select Keyboard Layout" msgstr "Ukłod tastatury" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Pisz, żeby przetestować ukłod" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Pokoż ukłod tastatury" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Ôbier" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Jynzyk wchodu" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Jynzyki" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Ôbier jynzyk" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Teroźnie aktywny jynzyk" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + +#, fuzzy, c-format +#~| msgid "No Permission to Create User '%s'" +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Brak uprawniyń na stworzynie używocza „%s”" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Tworzynie używocza „%s” sie niy podarziło" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Brak uprawniyń na stworzynie używocza „%s”" diff --git a/po/ta.po b/po/ta.po index 4cb29083..97bfae42 100644 --- a/po/ta.po +++ b/po/ta.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:27+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,91 +26,178 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 #, fuzzy msgid "Back" msgstr "பின்நகர்வு" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/te.po b/po/te.po index 2032bd4e..0f108215 100644 --- a/po/te.po +++ b/po/te.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-27 15:29+0000\n" "Last-Translator: Maxwell Barvian \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,90 +26,177 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/th.po b/po/th.po index 4fb7c724..51db9a06 100644 --- a/po/th.po +++ b/po/th.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2019-09-07 18:22+0000\n" "Last-Translator: Wattana Gaming \n" "Language-Team: Thai \n" "Language-Team: Tagalog \n" "Language-Team: Turkish \n" @@ -12,46 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Kullanıcı Oluştur" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"İlk Kurulum kullanıcınızı oluşturamadı. Bu olmadan oturum açamazsınız ve " -"işletim sistemini yeniden kurmanız gerekebilir." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "'%s' Kullanıcısı Oluşturulamadı" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "'%s' Kullanıcısını Oluşturma İzniniz Yok" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "İlk Kurulum, ana bilgisayar adınızı ayarlayamadı." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "'%s' ana bilgisayar adını ayarlama izni yok" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Ana Bilgisayar Adı '%s' ayarlanamıyor" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -60,31 +28,31 @@ msgstr "%s…" msgid "Default" msgstr "Varsayılan" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Hesap Oluştur" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Tam Ad" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Kullanıcı Adı" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Bir Parola Seçin" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Parolayı Onayla" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Cihaz adı" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -92,61 +60,172 @@ msgstr "" "Bluetooth veya ağ üzerinden paylaşım yaparken diğer cihazlar tarafından " "görülebilir." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Geri" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Kurulumu Bitir" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Parolalar eşleşmiyor" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" -msgstr "Seçilen kullanıcı adı zaten alınmış" +msgstr "Bu kullanıcı adı zaten alınmış" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -"Bir kullanıcı adı yalnızca küçük harf ve rakam içermeli, boşluk içermemelidir" +"Kullanıcı adı yalnızca küçük harf ve rakam içerebilir, boşluk içermemelidir" + +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "“%s” için hesap oluşturma başarısız oldu" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "“%s” için bir hesap oluşturma izni alınamadı" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"İlk Kurulum bu hesabı oluşturamadı. Bu hesap olmadan oturum açamazsınız ve " +"işletim sistemini yeniden kurmanız gerekebilir." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "Bu cihazı “%s” olarak adlandırmak için izin alınamadı" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Bu cihaz “%s” olarak adlandırılamıyor" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "İlk Kurulum, ana bilgisayar adınızı ayarlayamadı." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Klavye Düzeni Seçin" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Düzeni test etmek için yazın" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Klavye düzenini göster" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Seç" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Giriş Dili" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Diller" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Birincil tıklama için sağ fare düğmesi kullanılsın mı?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Birincil tıklamanın beklendiği yerde sağ fare düğmesi kullanıldı. Birincil " +"tıklama için her zaman sağ fare düğmesini kullanmayı seçebilirsiniz." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Birincil Olarak Sağ Tıklayın" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Birincil Olarak Sol Tıklayın" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Birincil tıklama için sol fare düğmesi kullanılsın mı?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Birincil tıklamanın beklendiği yerde sol fare düğmesi kullanıldı. Birincil " +"tıklama için her zaman sol fare düğmesini kullanmayı seçebilirsiniz." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Bir Dil Seçin" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Şu anda etkin olan dil" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Ağı Bağla" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Güncellemeleri almak, yeni uygulamalar yüklemek ve çevrimiçi hizmetlere " +"bağlanmak için İnternet bağlantısı gereklidir" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "Sağ üstteki ağ göstergesinden yakındaki bir kablosuz ağı seçin." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Bir ağ kablosu bağlayın" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Atla" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "İleri" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "'%s' ana bilgisayar adını ayarlama izni yok" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Ana Bilgisayar Adı '%s' ayarlanamıyor" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "'%s' Kullanıcısı Oluşturulamadı" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "'%s' Kullanıcısını Oluşturma İzniniz Yok" + #~ msgid "Cancel Installation" #~ msgstr "Kurulumu İptal Et" diff --git a/po/ug.po b/po/ug.po index d4522eb5..81b0f6d5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2016-05-25 22:12+0000\n" "Last-Translator: Launchpad Translations Administrators \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,86 +26,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/uk.po b/po/uk.po index 01e60b7d..c0e7bcf8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-09-02 14:52+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-11-27 08:25+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian \n" @@ -13,46 +13,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "Створити користувача" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"Встановлювачу не вдалося створити вашого користувача. Без цього ви не " -"зможете увійти в систему і, можливо, доведеться перевстановити ОС." - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "Не вдалося створити користувача «%s»" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "Немає дозволу для створення користувача «%s»" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "Встановлювач не може встановити вашу назву хосту." - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "Немає дозволу на створення назви хосту «%s»" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "Не вдалося встановити назву хосту «%s»" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,31 +29,31 @@ msgstr "%s…" msgid "Default" msgstr "Типовий" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "Створити обліковий запис" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "Повне ім'я" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "Ім'я користувача" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "Оберіть пароль" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "Підтвердити пароль" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "Назва пристрою" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." @@ -93,60 +61,173 @@ msgstr "" "Видима для інших пристроїв під час спільного використання, наприклад через " "Bluetooth або через мережу." -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "Назад" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "Завершити встановлення" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "Паролі не збігаються" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" -msgstr "Вибране ім’я користувача вже зайнято" +msgstr "Вибране ім'я користувача вже використовується" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "Ім'я користувача повинно містити лише малі літери і цифри без пробілів" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "Не вдалося створити обліковий запис для «%s»" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "Неможливо отримати дозвіл на створення облікового запису для «%s»" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Встановлювачу не вдалося створити цей обліковий запис. Без нього ви не " +"зможете ввійти та, можливо, доведеться перевстановити ОС." + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "Неможливо отримати дозвіл, щоб назвати ций пристрій «%s»" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "Неможливо назвати цей пристрій «%s»" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "Встановлювач не може встановити вашу назву хосту." + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "Виберіть розкладку клавіатури" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "Введіть щось для перевірки розкладки" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "Показати розкладку клавіатури" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "Вибрати" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "Мова введення" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "Мови" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "Використовувати праву кнопку миші основною?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"Права кнопка миші була натиснута там, де очікувалося натискання основної " +"кнопки. Ви можете завжди встановити праву кнопку миші основною." + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "Зробити праву кнопку миші основною" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "Зробити ліву кнопку миші основною" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "Використовувати ліву кнопку миші основною?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"Ліва кнопка миші була натиснута там, де очікувалося натискання основної " +"кнопки. Ви можете завжди встановити ліву кнопку миші основною." + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "Виберіть мову" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "Поточна мова" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "Під'єднатися до інтернету" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" +"Для отримання оновлень, встановлення нових застосунків та під'єднання до " +"онлайн-служб потрібне з'єднання з інтернетом" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" +"Виберіть бездротову мережу поблизу за допомогою індикатора мережі у " +"верхньому правому куті." + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "Під'єднайте мережевий кабель" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "Пропустити" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "Далі" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "Немає дозволу на створення назви хосту «%s»" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "Не вдалося встановити назву хосту «%s»" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "Не вдалося створити користувача «%s»" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "Немає дозволу для створення користувача «%s»" + #~ msgid "Cancel Installation" #~ msgstr "Відмінити встановлення" diff --git a/po/ur.po b/po/ur.po index 2e2babc9..1d4c330c 100644 --- a/po/ur.po +++ b/po/ur.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: 2018-02-02 00:11+0000\n" "Last-Translator: Yasir Rehman \n" "Language-Team: Urdu \n" "Language-Team: Uzbek \n" "Language-Team: LANGUAGE \n" @@ -13,41 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-09-27 06:41+0000\n" "X-Generator: Launchpad (build 18204)\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -56,90 +26,177 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + #~ msgid "translator-credits" #~ msgstr "" #~ "Launchpad Contributions:\n" diff --git a/po/wa.po b/po/wa.po index 1e5cce5f..c7930a8c 100644 --- a/po/wa.po +++ b/po/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/wo.po b/po/wo.po index 370279f8..18b658ef 100644 --- a/po/wo.po +++ b/po/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/xh.po b/po/xh.po index e1bf46f5..63d7b489 100644 --- a/po/xh.po +++ b/po/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/yi.po b/po/yi.po index 1953b3e0..09d8213d 100644 --- a/po/yi.po +++ b/po/yi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/yo.po b/po/yo.po index 803cd135..57799da3 100644 --- a/po/yo.po +++ b/po/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/za.po b/po/za.po index b05c870a..4490a43c 100644 --- a/po/za.po +++ b/po/za.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/zh.po b/po/zh.po index b82535c1..bece3b94 100644 --- a/po/zh.po +++ b/po/zh.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2019-09-07 18:22+0000\n" -"Last-Translator: infinite027 \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2021-11-01 08:19+0000\n" +"Last-Translator: Yuchen Deng \n" "Language-Team: Chinese \n" "Language: zh\n" @@ -12,44 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.7.1\n" +"X-Generator: Weblate 4.4.2\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 #, fuzzy msgid "Create a User" msgstr "创建用户" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -58,91 +28,189 @@ msgstr "%s…" msgid "Default" msgstr "默认" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "创建用户" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "全称" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "用户名" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "设置密码" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" -msgstr "重复密码" +msgstr "确认密码" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "返回" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "完成" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" -msgstr "密码错误" +msgstr "密码不匹配" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" -msgstr "" +msgstr "所选用户名已被使用" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" +msgstr "用户名只能包含小写字母和数字,不能包含空格" + +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 #, fuzzy -#| msgid "Keyboard Layout" +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"初始安装无法创建您的用户。 没有它,您将无法登录,可能需要重新安装操作系统。" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" -msgstr "键盘" +msgstr "选择键盘布局" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" -msgstr "" +msgstr "输入以测试您的布局" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" -msgstr "现实键盘配置" +msgstr "显示键盘布局" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "选择" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "输入语言" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "语言" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "选择语言" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" -msgstr "目前启用的语言" +msgstr "当前激活的语言" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "创建用户'%s'失败" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "没有创建用户'%s'的权限" #~ msgid "Cancel Installation" #~ msgstr "取消安装" diff --git a/po/zh_CN.po b/po/zh_CN.po index fe4f6d55..06629a49 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-06-20 22:40+0000\n" -"Last-Translator: imgradeone Yan \n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-12-10 06:25+0000\n" +"Last-Translator: colindemian \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" @@ -12,47 +12,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: Weblate 4.14.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "新建用户" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" -"初始设置无法创建您的账户。如果缺少此账户,您将无法登入设备,还可能需要重新安" -"装系统。" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "创建账户 '%s' 失败" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "无权创建账户 '%s'" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, fuzzy, c-format -#| msgid "No Permission to Create User '%s'" -msgid "No Permission to set hostname '%s'" -msgstr "无权创建账户 '%s'" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -61,90 +28,196 @@ msgstr "%s…" msgid "Default" msgstr "默认" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "新建账户" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "全名" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "用户名" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "选择密码" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "确认密码" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" -msgstr "" +msgstr "设备名称" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." -msgstr "" +msgstr "共享时对其他设备可见,例如通过蓝牙或网络。" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "返回" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "完成设置" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "密码不匹配" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "用户名已存在" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "用户名只能包含小写字母和数字,不能包含空格" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "为 “%s” 创建账号失败" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "没有权限为 “%s” 创建账号" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "初始设置无法创建此账户。若缺少此账户,您将无法登入设备,还可能需要重新安装系" +"统。" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "无法获取更改此设备名称 “%s” 的权限" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "无法命名此设备 “%s”" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "初始化安装无法设置您的主机名。" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "选择键盘布局" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "输入以测试布局" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "显示键盘布局" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "选择" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "输入语言" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "语言" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "使用鼠标右键进行主要点击?" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" +"在预期主要点击的地方使用了鼠标右键。 您可以选择始终使用鼠标右键进行主要单击。" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "右键单击为主" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "左键单击为主" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "使用鼠标左键进行主要点击?" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" +"鼠标左键用于预期主要点击的地方。 您可以选择始终使用鼠标左键进行主要单击。" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "选择语言" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "当前选中的语言" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "连接网络" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "需要 Internet 连接才能接收更新、安装新应用程序和连接到在线服务" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "在右上角的网络指示器中选择附近的无线网络。" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "连接网线" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "跳过" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "下一步" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "无权设置主机名 '%s'" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "不能设置主机名 '%s'" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "创建账户 '%s' 失败" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "无权创建账户 '%s'" + #~ msgid "Cancel Installation" #~ msgstr "取消安装" diff --git a/po/zh_HK.po b/po/zh_HK.po index 0b5782f0..3a40c9fc 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 705b0924..d24c6945 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" -"PO-Revision-Date: 2021-10-05 13:59+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" +"PO-Revision-Date: 2022-02-13 19:31+0000\n" "Last-Translator: Tommy Chiang \n" "Language-Team: Chinese (Traditional) \n" @@ -15,41 +15,11 @@ msgstr "" "X-Generator: Weblate 4.4.2\n" "X-Launchpad-Export-Date: 2016-09-27 06:42+0000\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "建立使用者" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "使用者「%s」建立失敗" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "沒有權限建立使用者「%s」" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "沒有權限設定主機名稱「%s」" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "無法設定主機名稱「%s」" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "%s…" @@ -58,90 +28,199 @@ msgstr "%s…" msgid "Default" msgstr "預設" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "建立帳號" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "全名" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "使用者名稱" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "決定密碼" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "確認密碼" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "裝置名稱" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "返回" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "完成設定" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "密碼與確認密碼不一致" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "此使用者名稱已被使用" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "使用者名稱只可由小寫英文字母及數字組成,並且不能有空格" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +#, fuzzy +#| msgid "" +#| "Initial Setup could not create your user. Without it, you will not be " +#| "able to log in and may need to reinstall the OS." +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" +"Initial Setup 未能建立你的帳號。在此情況下,您將不能登入,並可能需要重新安裝" +"作業系統。" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "初始化安裝無法設定您的主機名稱。" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "選擇鍵盤配置" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "請繕打文字以測試您的鍵盤配置" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "顯示鍵盤配置" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "選取" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "輸入語言" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "語言" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "選取語言" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "目前使用中語言" +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "連接網路" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "連接網路線" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" + +#, c-format +#~ msgid "No Permission to set hostname '%s'" +#~ msgstr "沒有權限設定主機名稱「%s」" + +#, c-format +#~ msgid "Unable to set Hostname '%s'" +#~ msgstr "無法設定主機名稱「%s」" + +#, c-format +#~ msgid "Creating User '%s' Failed" +#~ msgstr "使用者「%s」建立失敗" + +#, c-format +#~ msgid "No Permission to Create User '%s'" +#~ msgstr "沒有權限建立使用者「%s」" + #~ msgid "Cancel Installation" #~ msgstr "取消安裝" @@ -192,9 +271,6 @@ msgstr "目前使用中語言" #~ "cause it to run slowly or freeze." #~ msgstr "您的裝置未滿足建議硬體需求。這可能導致電腦十分緩慢,或是凍結不動。" -#~ msgid "Connect to a Power Source" -#~ msgstr "請連接電源" - #~ msgid "" #~ "Your device is running on battery power. It's recommended to be plugged " #~ "in while installing." diff --git a/po/zu.po b/po/zu.po index d3643fab..b3cbaf20 100644 --- a/po/zu.po +++ b/po/zu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.initial-setup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-24 22:23+0000\n" +"POT-Creation-Date: 2022-12-07 18:14+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -16,41 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/MainWindow.vala:33 +#: src/Application.vala:34 msgid "Create a User" msgstr "" -#: src/Utils.vala:53 -msgid "" -"Initial Setup could not create your user. Without it, you will not be able " -"to log in and may need to reinstall the OS." -msgstr "" - -#: src/Utils.vala:65 -#, c-format -msgid "Creating User '%s' Failed" -msgstr "" - -#: src/Utils.vala:69 -#, c-format -msgid "No Permission to Create User '%s'" -msgstr "" - -#: src/Utils.vala:188 -msgid "Initial Setup could not set your hostname." -msgstr "" - -#: src/Utils.vala:199 -#, c-format -msgid "No Permission to set hostname '%s'" -msgstr "" - -#: src/Utils.vala:202 -#, c-format -msgid "Unable to set Hostname '%s'" -msgstr "" - -#: src/Helpers/LocaleHelper.vala:149 src/Views/KeyboardLayoutView.vala:194 +#: src/Helpers/LocaleHelper.vala:132 src/Views/KeyboardLayoutView.vala:181 #, c-format msgid "%s…" msgstr "" @@ -59,86 +29,173 @@ msgstr "" msgid "Default" msgstr "" -#: src/Views/AccountView.vala:36 +#: src/Views/AccountView.vala:66 msgid "Create an Account" msgstr "" -#: src/Views/AccountView.vala:40 +#: src/Views/AccountView.vala:68 msgid "Full Name" msgstr "" -#: src/Views/AccountView.vala:45 +#: src/Views/AccountView.vala:73 msgid "Username" msgstr "" -#: src/Views/AccountView.vala:52 +#: src/Views/AccountView.vala:80 msgid "Choose a Password" msgstr "" -#: src/Views/AccountView.vala:68 +#: src/Views/AccountView.vala:96 msgid "Confirm Password" msgstr "" -#: src/Views/AccountView.vala:78 +#: src/Views/AccountView.vala:106 msgid "Device name" msgstr "" -#: src/Views/AccountView.vala:91 +#: src/Views/AccountView.vala:119 msgid "" "Visible to other devices when sharing, e.g. with Bluetooth or over the " "network." msgstr "" -#: src/Views/AccountView.vala:125 src/Views/KeyboardLayoutView.vala:52 +#: src/Views/AccountView.vala:154 src/Views/KeyboardLayoutView.vala:51 +#: src/Views/NetworkView.vala:66 msgid "Back" msgstr "" -#: src/Views/AccountView.vala:127 +#: src/Views/AccountView.vala:158 msgid "Finish Setup" msgstr "" -#: src/Views/AccountView.vala:219 +#: src/Views/AccountView.vala:240 msgid "Passwords do not match" msgstr "" -#: src/Views/AccountView.vala:244 +#: src/Views/AccountView.vala:265 msgid "The chosen username is already taken" msgstr "" -#: src/Views/AccountView.vala:246 +#: src/Views/AccountView.vala:267 msgid "" "A username must only contain lowercase letters and numbers, without spaces" msgstr "" -#: src/Views/KeyboardLayoutView.vala:26 +#: src/Views/AccountView.vala:310 +#, c-format +msgid "Creating an account for “%s” failed" +msgstr "" + +#: src/Views/AccountView.vala:314 +#, c-format +msgid "Couldn't get permission to create an account for “%s”" +msgstr "" + +#: src/Views/AccountView.vala:320 +msgid "" +"Initial Setup could not create this account. Without it, you will not be " +"able to log in and may need to reinstall the OS." +msgstr "" + +#: src/Views/AccountView.vala:357 +#, c-format +msgid "Couldn't get permission to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:360 +#, c-format +msgid "Unable to name this device “%s”" +msgstr "" + +#: src/Views/AccountView.vala:367 +msgid "Initial Setup could not set your hostname." +msgstr "" + +#: src/Views/KeyboardLayoutView.vala:27 msgid "Select Keyboard Layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:35 +#: src/Views/KeyboardLayoutView.vala:33 msgid "Type to test your layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:38 +#: src/Views/KeyboardLayoutView.vala:36 msgid "Show keyboard layout" msgstr "" -#: src/Views/KeyboardLayoutView.vala:54 src/Views/LanguageView.vala:111 -#: src/Views/LanguageView.vala:167 +#: src/Views/KeyboardLayoutView.vala:55 src/Views/LanguageView.vala:107 +#: src/Views/LanguageView.vala:172 msgid "Select" msgstr "" -#: src/Views/KeyboardLayoutView.vala:137 +#: src/Views/KeyboardLayoutView.vala:124 msgid "Input Language" msgstr "" -#: src/Views/LanguageView.vala:200 +#: src/Views/LanguageView.vala:205 msgid "Languages" msgstr "" -#: src/Views/LanguageView.vala:244 +#: src/Views/LanguageView.vala:240 +msgid "Use the right mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:241 +msgid "" +"The right mouse button was used where a primary click was expected. You can " +"choose to always use the right mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:242 src/Views/LanguageView.vala:249 +msgid "Right-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:243 src/Views/LanguageView.vala:248 +msgid "Left-Click as Primary" +msgstr "" + +#: src/Views/LanguageView.vala:246 +msgid "Use the left mouse button for primary click?" +msgstr "" + +#: src/Views/LanguageView.vala:247 +msgid "" +"The left mouse button was used where a primary click was expected. You can " +"choose to always use the left mouse button for primary click." +msgstr "" + +#: src/Views/LanguageView.vala:312 msgid "Select a Language" msgstr "" -#: src/Views/LanguageView.vala:267 src/Views/LanguageView.vala:326 +#: src/Views/LanguageView.vala:335 src/Views/LanguageView.vala:394 msgid "Currently active language" msgstr "" + +#: src/Views/NetworkView.vala:30 +msgid "Connect Network" +msgstr "" + +#: src/Views/NetworkView.vala:32 +msgid "" +"An Internet connection is required to receive updates, install new apps, and " +"connect to online services" +msgstr "" + +#. /Translators: for RTL languages, the UI is flipped +#: src/Views/NetworkView.vala:42 +msgid "" +"Choose a nearby wireless network from the network indicator in the top right." +msgstr "" + +#: src/Views/NetworkView.vala:48 +msgid "Connect a network cable" +msgstr "" + +#: src/Views/NetworkView.vala:70 +msgid "Skip" +msgstr "" + +#: src/Views/NetworkView.vala:88 +msgid "Next" +msgstr "" diff --git a/src/Application.vala b/src/Application.vala index 81d740f8..2a7838af 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -26,7 +26,13 @@ public class Installer.App : Gtk.Application { } public override void activate () { - var window = new MainWindow (); + var window = new MainWindow () { + default_height = 600, + default_width = 850, + deletable = false, + icon_name = application_id, + title = _("Create a User") + }; window.show_all (); this.add_window (window); } diff --git a/src/Helpers/AccountsServiceInterface.vala b/src/Helpers/AccountsServiceInterface.vala index c44bf9c0..0178288e 100644 --- a/src/Helpers/AccountsServiceInterface.vala +++ b/src/Helpers/AccountsServiceInterface.vala @@ -7,6 +7,7 @@ public interface Installer.AccountsService : Object { public abstract KeyboardLayout[] keyboard_layouts { owned get; set; } public abstract uint active_keyboard_layout { get; set; } + public abstract bool left_handed { get; set; } } [DBus (name = "org.freedesktop.Accounts")] diff --git a/src/MainWindow.vala b/src/MainWindow.vala index b7e12008..96102baf 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -23,20 +23,10 @@ public class Installer.MainWindow : Hdy.Window { private AccountView account_view; private LanguageView language_view; private KeyboardLayoutView keyboard_layout_view; + private NetworkView network_view; private SoftwareView software_view; private ProgressView progress_view; - public MainWindow () { - Object ( - deletable: false, - height_request: 700, - icon_name: "system-os-installer", - resizable: false, - title: _("Create a User"), - width_request: 950 - ); - } - construct { language_view = new LanguageView (); @@ -69,7 +59,24 @@ public class Installer.MainWindow : Hdy.Window { deck.add (keyboard_layout_view); deck.visible_child = keyboard_layout_view; - keyboard_layout_view.next_step.connect (() => load_account_view ()); + keyboard_layout_view.next_step.connect (() => load_network_view ()); + } + + private void load_network_view () { + if (network_view != null) { + network_view.destroy (); + } + + if (!NetworkMonitor.get_default ().get_network_available ()) { + network_view = new NetworkView (); + + deck.add (network_view); + deck.visible_child = network_view; + + network_view.next_step.connect (load_account_view); + } else { + load_account_view (); + } } private void load_account_view () { @@ -82,7 +89,7 @@ public class Installer.MainWindow : Hdy.Window { deck.add (account_view); deck.visible_child = account_view; - account_view.next_step.connect (() => load_software_view ()); + account_view.next_step.connect (load_software_view); } private void load_software_view () { @@ -103,65 +110,23 @@ public class Installer.MainWindow : Hdy.Window { deck.add (progress_view); deck.visible_child = progress_view; - if (account_view.created != null) { - unowned Configuration configuration = Configuration.get_default (); - progress_view.progressbar_label.label = _("Setting language"); - account_view.created.set_language (configuration.lang); - - progress_view.progressbar_label.label = _("Setting keyboard layout"); - set_keyboard_and_locale.begin ((obj, res) => { - set_keyboard_and_locale.end (res); - - install_additional_packages.begin ((obj, res) => { - install_additional_packages.end (res); - destroy (); - }); - }); - } else { - destroy (); - } - } - - private async void set_keyboard_and_locale () { - yield set_keyboard_layout (); - - string lang = Configuration.get_default ().lang; - string? locale = null; - bool success = yield LocaleHelper.language2locale (lang, out locale); - - if (!success || locale == null || locale == "") { - warning ("Falling back to setting unconverted language as user's locale, may result in incorrect language"); - account_view.created.set_language (lang); - } else { - account_view.created.set_language (locale); - } - } - - private async void set_keyboard_layout () { - AccountsService accounts_service = null; - - try { - var act_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, - "org.freedesktop.Accounts", - "/org/freedesktop/Accounts"); - var user_path = act_service.find_user_by_name (account_view.created.user_name); - - accounts_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, - "org.freedesktop.Accounts", - user_path, - GLib.DBusProxyFlags.GET_INVALIDATED_PROPERTIES); - } catch (Error e) { - warning ("Unable to get AccountsService proxy, keyboard layout on new user may be incorrect: %s", e.message); - } - - if (accounts_service != null) { - var layouts = Configuration.get_default ().keyboard_layout.to_accountsservice_array (); - if (Configuration.get_default ().keyboard_variant != null) { - layouts = Configuration.get_default ().keyboard_variant.to_accountsservice_array (); - } - - accounts_service.keyboard_layouts = layouts; - } + // if (account_view.created_user != null) { + // unowned Configuration configuration = Configuration.get_default (); + // progress_view.progressbar_label.label = _("Setting language"); + // account_view.created_user.set_language (configuration.lang); + + // progress_view.progressbar_label.label = _("Setting keyboard layout"); + // set_keyboard_and_locale.begin ((obj, res) => { + // set_keyboard_and_locale.end (res); + + // install_additional_packages.begin ((obj, res) => { + // install_additional_packages.end (res); + // destroy (); + // }); + // }); + // } else { + // destroy (); + // } } private async void install_additional_packages () { diff --git a/src/Objects/Configuration.vala b/src/Objects/Configuration.vala index 78c9d926..af884e6c 100644 --- a/src/Objects/Configuration.vala +++ b/src/Objects/Configuration.vala @@ -32,5 +32,6 @@ public class Configuration : GLib.Object { public string? country { get; set; default = null; } public InitialSetup.KeyboardLayout keyboard_layout { get; set; } public InitialSetup.KeyboardVariant? keyboard_variant { get; set; default = null; } + public bool left_handed { get; set; } public bool install_additional_media_formats { get; set; default = false; } } diff --git a/src/Utils.vala b/src/Utils.vala index 5815da64..3bf581a1 100644 --- a/src/Utils.vala +++ b/src/Utils.vala @@ -20,111 +20,6 @@ */ namespace Utils { - private static Act.UserManager? usermanager = null; - - public static unowned Act.UserManager? get_usermanager () { - if (usermanager != null && usermanager.is_loaded) { - return usermanager; - } - - usermanager = Act.UserManager.get_default (); - return usermanager; - } - - private static Polkit.Permission? permission = null; - - public static Polkit.Permission? get_permission () { - if (permission != null) - return permission; - try { - permission = new Polkit.Permission.sync ("org.freedesktop.accounts.user-administration", new Polkit.UnixProcess (Posix.getpid ())); - return permission; - } catch (Error e) { - critical (e.message); - return null; - } - } - - public static Act.User? create_new_user (string fullname, string username, string password) { - var permission = get_permission (); - - string? primary_text = null; - string? error_message = null; - string secondary_text = _("Initial Setup could not create your user. Without it, you will not be able to log in and may need to reinstall the OS."); - - if (permission != null && permission.allowed) { - try { - var user_manager = get_usermanager (); - if (user_manager != null) { - var created_user = user_manager.create_user (username, fullname, Act.UserAccountType.ADMINISTRATOR); - created_user.set_password (password, ""); - - return created_user; - } - } catch (Error e) { - primary_text = _("Creating User '%s' Failed").printf (username); - error_message = e.message; - } - } else { - primary_text = _("No Permission to Create User '%s'").printf (username); - } - - if (primary_text != null) { - var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( - primary_text, - secondary_text, - "dialog-error", - Gtk.ButtonsType.CLOSE - ); - - if (error_message != null) { - error_dialog.show_error_details (error_message); - } - - error_dialog.run (); - error_dialog.destroy (); - } - - return null; - } - - public static bool is_taken_username (string username) { - foreach (unowned Act.User user in get_usermanager ().list_users ()) { - if (user.get_user_name () == username) { - return true; - } - } - return false; - } - - public static bool is_valid_username (string username) { - try { - if (new Regex ("^[a-z]+[a-z0-9]*$").match (username)) { - return true; - } - return false; - } catch (Error e) { - critical (e.message); - return false; - } - } - - public static string gen_username (string fullname) { - string username = ""; - bool met_alpha = false; - - foreach (char c in fullname.to_ascii ().to_utf8 ()) { - if (c.isalpha ()) { - username += c.to_string ().down (); - met_alpha = true; - } else if (c.isdigit () && met_alpha) { - username += c.to_string (); - } - } - - return username; - } - public static string gen_hostname (string pretty_hostname) { string hostname = ""; bool met_alpha = false; @@ -135,7 +30,7 @@ namespace Utils { hostname += c.to_string (); met_alpha = true; whitespace_before = false; - } else if (c.isdigit () && met_alpha) { + } else if ((c.isdigit () || c == '-') && met_alpha) { hostname += c.to_string (); whitespace_before = false; } else if (c.isspace () && !whitespace_before) { @@ -182,46 +77,4 @@ namespace Utils { return hostname; } - - public static bool set_hostname (string hostname) { - string? primary_text = null; - string secondary_text = _("Initial Setup could not set your hostname."); - string? error_message = null; - - try { - var permission = new Polkit.Permission.sync ("org.freedesktop.hostname1.set-static-hostname", new Polkit.UnixProcess (Posix.getpid ())); - - if (permission != null && permission.allowed) { - get_hostname_interface_instance (); - hostname_interface_instance.set_pretty_hostname (hostname, false); - hostname_interface_instance.set_static_hostname (gen_hostname (hostname), false); - } else { - primary_text = _("No Permission to set hostname '%s'").printf (hostname); - } - } catch (GLib.Error e) { - primary_text = _("Unable to set Hostname '%s'").printf (hostname); - error_message = e.message; - } - - if (primary_text != null) { - var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( - primary_text, - secondary_text, - "dialog-error", - Gtk.ButtonsType.CLOSE - ); - - if (error_message != null) { - error_dialog.show_error_details (error_message); - } - - - error_dialog.run (); - error_dialog.destroy (); - - return false; - } - - return true; - } } diff --git a/src/Views/AbstractInstallerView.vala b/src/Views/AbstractInstallerView.vala index 07c6a1e5..7120cb2a 100644 --- a/src/Views/AbstractInstallerView.vala +++ b/src/Views/AbstractInstallerView.vala @@ -15,30 +15,41 @@ * along with this program. If not, see . */ -public abstract class AbstractInstallerView : Gtk.Grid { +public abstract class AbstractInstallerView : Gtk.Box { public signal void next_step (); - protected Gtk.Grid content_area; - protected Gtk.ButtonBox action_area; + protected Gtk.Box title_area; + protected Gtk.Box content_area; + protected Gtk.Box action_area; construct { - content_area = new Gtk.Grid () { - column_homogeneous = true, - column_spacing = 12, - row_spacing = 12, - expand = true, - orientation = Gtk.Orientation.VERTICAL + title_area = new Gtk.Box (Gtk.Orientation.VERTICAL, 12) { + valign = Gtk.Align.CENTER }; + title_area.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); - action_area = new Gtk.ButtonBox (Gtk.Orientation.HORIZONTAL) { - spacing = 6, - layout_style = Gtk.ButtonBoxStyle.END + content_area = new Gtk.Box (Gtk.Orientation.VERTICAL, 12); + + var box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 12) { + homogeneous = true, + hexpand = true, + vexpand = true, + }; + box.add (title_area); + box.add (content_area); + + action_area = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6) { + halign = Gtk.Align.END, + homogeneous = true }; orientation = Gtk.Orientation.VERTICAL; - margin = 12; - row_spacing = 24; - add (content_area); + margin_top = 12; + margin_end = 12; + margin_bottom = 12; + margin_start = 12; + spacing = 24; + add (box); add (action_area); } } diff --git a/src/Views/AccountView.vala b/src/Views/AccountView.vala index e894c6c8..70d36a93 100644 --- a/src/Views/AccountView.vala +++ b/src/Views/AccountView.vala @@ -16,12 +16,41 @@ */ public class Installer.AccountView : AbstractInstallerView { - public Act.User? created { get; private set; } + private Act.UserManager _user_manager = null; + private Act.UserManager user_manager { + get { + if (_user_manager != null && _user_manager.is_loaded) { + return _user_manager; + } + + _user_manager = Act.UserManager.get_default (); + return _user_manager; + } + } + + private Polkit.Permission? _permission = null; + private Polkit.Permission? permission { + get { + if (_permission != null) { + return _permission; + } + + try { + _permission = new Polkit.Permission.sync ("org.freedesktop.accounts.user-administration", new Polkit.UnixProcess (Posix.getpid ())); + } catch (Error e) { + critical (e.message); + } + + return _permission; + } + } + public Act.User? created_user { get; private set; } private ErrorRevealer confirm_entry_revealer; private ErrorRevealer pw_error_revealer; private ErrorRevealer username_error_revealer; private Gtk.Button finish_button; + private Gtk.Entry realname_entry; private Granite.ValidatedEntry confirm_entry; private Granite.ValidatedEntry username_entry; private ValidatedEntry pw_entry; @@ -29,17 +58,16 @@ public class Installer.AccountView : AbstractInstallerView { private Granite.ValidatedEntry hostname_entry; construct { - var avatar = new Hdy.Avatar (48, null, true) { + var avatar = new Hdy.Avatar (104, null, true) { + margin = 12, valign = Gtk.Align.END }; var title_label = new Gtk.Label (_("Create an Account")); - title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); - title_label.valign = Gtk.Align.START; var realname_label = new Granite.HeaderLabel (_("Full Name")); - var realname_entry = new Gtk.Entry (); + realname_entry = new Gtk.Entry (); realname_entry.hexpand = true; var username_label = new Granite.HeaderLabel (_("Username")); @@ -118,11 +146,14 @@ public class Installer.AccountView : AbstractInstallerView { form_grid.attach (hostname_entry, 0, 14, 1, 1); form_grid.attach (hostname_info, 0, 15, 1, 1); - content_area.attach (avatar, 0, 0); - content_area.attach (title_label, 0, 1, 1, 1); - content_area.attach (form_grid, 1, 0, 1, 2); + title_area.add (avatar); + title_area.add (title_label); - var back_button = new Gtk.Button.with_label (_("Back")); + content_area.add (form_grid); + + var back_button = new Gtk.Button.with_label (_("Back")) { + width_request = 86 + }; finish_button = new Gtk.Button.with_label (_("Select")); finish_button.can_default = true; @@ -135,7 +166,7 @@ public class Installer.AccountView : AbstractInstallerView { back_button.clicked.connect (() => ((Hdy.Deck) get_parent ()).navigate (Hdy.NavigationDirection.BACK)); realname_entry.changed.connect (() => { - var username = Utils.gen_username (realname_entry.text); + var username = gen_username (realname_entry.text); username_entry.text = username; }); @@ -160,17 +191,7 @@ public class Installer.AccountView : AbstractInstallerView { update_finish_button (); }); - finish_button.clicked.connect (() => { - string fullname = realname_entry.text; - string username = username_entry.text; - string password = pw_entry.text; - - created = Utils.create_new_user (fullname, username, password); - - Utils.set_hostname (hostname_entry.text); - - next_step (); - }); + finish_button.clicked.connect (create_new_user); show_all (); @@ -231,8 +252,8 @@ public class Installer.AccountView : AbstractInstallerView { private bool check_username () { string username_entry_text = username_entry.text; - bool username_is_valid = Utils.is_valid_username (username_entry_text); - bool username_is_taken = Utils.is_taken_username (username_entry_text); + bool username_is_valid = is_valid_username (username_entry_text); + bool username_is_taken = is_taken_username (username_entry_text); if (username_entry_text == "") { username_error_revealer.reveal_child = false; @@ -265,6 +286,183 @@ public class Installer.AccountView : AbstractInstallerView { } } + private void create_new_user () { + string? primary_text = null; + string? error_message = null; + + if (permission != null && permission.allowed) { + try { + created_user = user_manager.create_user (username_entry.text, realname_entry.text, Act.UserAccountType.ADMINISTRATOR); + set_settings.begin ((obj, res) => { + set_settings.end (res); + + Application.get_default ().quit (); + }); + } catch (Error e) { + if (created_user != null) { + try { + user_manager.delete_user (created_user, true); + } catch (Error e) { + critical ("Unable to clean up failed user: %s", e.message); + } + } + + primary_text = _("Creating an account for “%s” failed").printf (username_entry.text); + error_message = e.message; + } + } else { + primary_text = _("Couldn't get permission to create an account for “%s”").printf (username_entry.text); + } + + if (primary_text != null) { + var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( + primary_text, + _("Initial Setup could not create this account. Without it, you will not be able to log in and may need to reinstall the OS."), + "system-users", + Gtk.ButtonsType.CLOSE + ) { + badge_icon = new ThemedIcon ("dialog-error"), + modal = true, + transient_for = (Gtk.Window) get_toplevel () + }; + + if (error_message != null) { + error_dialog.show_error_details (error_message); + } + + error_dialog.present (); + error_dialog.response.connect (error_dialog.destroy); + } + } + + private async void set_settings () { + created_user.set_password (pw_entry.text, ""); + yield set_accounts_service_settings (); + yield set_locale (); + set_hostname (hostname_entry.text); + } + + public bool set_hostname (string hostname) { + string? primary_text = null; + string? error_message = null; + + try { + var permission = new Polkit.Permission.sync ("org.freedesktop.hostname1.set-static-hostname", new Polkit.UnixProcess (Posix.getpid ())); + + if (permission != null && permission.allowed) { + Utils.get_hostname_interface_instance (); + Utils.hostname_interface_instance.set_pretty_hostname (hostname, false); + Utils.hostname_interface_instance.set_static_hostname (Utils.gen_hostname (hostname), false); + } else { + primary_text = _("Couldn't get permission to name this device “%s”").printf (hostname); + } + } catch (GLib.Error e) { + primary_text = _("Unable to name this device “%s”").printf (hostname); + error_message = e.message; + } + + if (primary_text != null) { + var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( + primary_text, + _("Initial Setup could not set your hostname."), + "dialog-error", + Gtk.ButtonsType.CLOSE + ) { + modal = true, + transient_for = (Gtk.Window) get_toplevel () + }; + + if (error_message != null) { + error_dialog.show_error_details (error_message); + } + + error_dialog.present (); + error_dialog.response.connect (error_dialog.destroy); + + return false; + } + + return true; + } + + private async void set_locale () { + string lang = Configuration.get_default ().lang; + string? locale = null; + bool success = yield LocaleHelper.language2locale (lang, out locale); + + if (!success || locale == null || locale == "") { + warning ("Falling back to setting unconverted language as user's locale, may result in incorrect language"); + created_user.set_language (lang); + } else { + created_user.set_language (locale); + } + } + + private async void set_accounts_service_settings () { + AccountsService accounts_service = null; + + try { + var act_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, + "org.freedesktop.Accounts", + "/org/freedesktop/Accounts"); + var user_path = act_service.find_user_by_name (created_user.user_name); + + accounts_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, + "org.freedesktop.Accounts", + user_path, + GLib.DBusProxyFlags.GET_INVALIDATED_PROPERTIES); + } catch (Error e) { + warning ("Unable to get AccountsService proxy, settings on new user may be incorrect: %s", e.message); + } + + if (accounts_service != null) { + var layouts = Configuration.get_default ().keyboard_layout.to_accountsservice_array (); + if (Configuration.get_default ().keyboard_variant != null) { + layouts = Configuration.get_default ().keyboard_variant.to_accountsservice_array (); + } + + accounts_service.keyboard_layouts = layouts; + accounts_service.left_handed = Configuration.get_default ().left_handed; + } + } + + private bool is_taken_username (string username) { + foreach (unowned Act.User user in user_manager.list_users ()) { + if (user.get_user_name () == username) { + return true; + } + } + return false; + } + + private bool is_valid_username (string username) { + try { + if (new Regex ("^[a-z]+[a-z0-9]*$").match (username)) { + return true; + } + return false; + } catch (Error e) { + critical (e.message); + return false; + } + } + + private string gen_username (string fullname) { + string username = ""; + bool met_alpha = false; + + foreach (char c in fullname.to_ascii ().to_utf8 ()) { + if (c.isalpha ()) { + username += c.to_string ().down (); + met_alpha = true; + } else if (c.isdigit () && met_alpha) { + username += c.to_string (); + } + } + + return username; + } + private class ValidatedEntry : Gtk.Entry { public bool is_valid { get; set; default = false; } diff --git a/src/Views/KeyboardLayoutView.vala b/src/Views/KeyboardLayoutView.vala index 09e57e97..4a04f7e2 100644 --- a/src/Views/KeyboardLayoutView.vala +++ b/src/Views/KeyboardLayoutView.vala @@ -20,13 +20,11 @@ public class KeyboardLayoutView : AbstractInstallerView { construct { var image = new Gtk.Image.from_icon_name ("input-keyboard", Gtk.IconSize.DIALOG) { + pixel_size = 128, valign = Gtk.Align.END }; - var title_label = new Gtk.Label (_("Select Keyboard Layout")) { - valign = Gtk.Align.START - }; - title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); + var title_label = new Gtk.Label (_("Select Keyboard Layout")); input_variant_widget = new VariantWidget (); @@ -45,11 +43,14 @@ public class KeyboardLayoutView : AbstractInstallerView { stack_grid.add (input_variant_widget); stack_grid.add (keyboard_test_entry); - content_area.attach (image, 0, 0); - content_area.attach (title_label, 0, 1); - content_area.attach (stack_grid, 1, 0, 1, 2); + title_area.add (image); + title_area.add (title_label); + + content_area.add (stack_grid); - var back_button = new Gtk.Button.with_label (_("Back")); + var back_button = new Gtk.Button.with_label (_("Back")) { + width_request = 86 + }; var next_button = new Gtk.Button.with_label (_("Select")) { sensitive = false @@ -137,12 +138,12 @@ public class KeyboardLayoutView : AbstractInstallerView { } } - var layout = new LayoutWidget (); - layout.set_layout (layout_string); - - var popover = new Gtk.Popover (keyboard_test_entry); - popover.add (layout); - popover.show_all (); + string command = "gkbd-keyboard-display --layout=%s".printf (layout_string); + try { + AppInfo.create_from_commandline (command, null, AppInfoCreateFlags.NONE).launch (null, null); + } catch (Error e) { + warning ("Error launching keyboard layout display: %s", e.message); + } }); input_variant_widget.main_listbox.bind_model (InitialSetup.KeyboardLayout.get_all (), (layout) => { diff --git a/src/Views/LanguageView.vala b/src/Views/LanguageView.vala index 11e2aa84..7ac1189e 100644 --- a/src/Views/LanguageView.vala +++ b/src/Views/LanguageView.vala @@ -43,19 +43,19 @@ public class Installer.LanguageView : AbstractInstallerView { construct { var image = new Gtk.Image.from_icon_name ("preferences-desktop-locale", Gtk.IconSize.DIALOG) { + pixel_size = 128, valign = Gtk.Align.END }; select_label = new Gtk.Label (null) { halign = Gtk.Align.CENTER, + valign = Gtk.Align.START, wrap = true }; select_stack = new Gtk.Stack () { - transition_type = Gtk.StackTransitionType.CROSSFADE, - valign = Gtk.Align.START + transition_type = Gtk.StackTransitionType.CROSSFADE }; - select_stack.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); select_stack.add (select_label); select_stack.notify["transition-running"].connect (() => { @@ -68,10 +68,6 @@ public class Installer.LanguageView : AbstractInstallerView { } }); - var size_group = new Gtk.SizeGroup (Gtk.SizeGroupMode.VERTICAL); - size_group.add_widget (select_stack); - size_group.add_widget (image); - lang_variant_widget = new VariantWidget (); lang_variant_widget.variant_listbox.set_sort_func ((Gtk.ListBoxSortFunc) CountryRow.compare); @@ -109,6 +105,7 @@ public class Installer.LanguageView : AbstractInstallerView { } next_button = new Gtk.Button.with_label (_("Select")) { + width_request = 86, sensitive = false }; next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); @@ -120,15 +117,23 @@ public class Installer.LanguageView : AbstractInstallerView { lang_variant_widget.main_listbox.row_activated.connect (row_activated); next_button.clicked.connect (on_next_button_clicked); + next_button.button_press_event.connect ((event) => { + if (event.button == Gdk.BUTTON_SECONDARY) { + on_next_button_secondary_clicked (); + } + + return base.button_press_event (event); + }); destroy.connect (() => { // We need to disconnect the signal otherwise it's called several time when destroying the window… lang_variant_widget.main_listbox.row_selected.disconnect (row_selected); }); - content_area.attach (image, 0, 0); - content_area.attach (select_stack, 0, 1); - content_area.attach (lang_variant_widget, 1, 0, 1, 2); + title_area.add (image); + title_area.add (select_stack); + + content_area.add (lang_variant_widget); timeout (); } @@ -229,6 +234,69 @@ public class Installer.LanguageView : AbstractInstallerView { next_step (); } + private void on_next_button_secondary_clicked () { + var mouse_settings = new GLib.Settings ("org.gnome.desktop.peripherals.mouse"); + + string primary_label = _("Use the right mouse button for primary click?"); + string secondary_label = _("The right mouse button was used where a primary click was expected. You can choose to always use the right mouse button for primary click."); + string suggested_action_label = _("Right-Click as Primary"); + string cancel_action_label = _("Left-Click as Primary"); + + if (mouse_settings.get_boolean ("left-handed")) { + primary_label = _("Use the left mouse button for primary click?"); + secondary_label = _("The left mouse button was used where a primary click was expected. You can choose to always use the left mouse button for primary click."); + suggested_action_label = _("Left-Click as Primary"); + cancel_action_label = _("Right-Click as Primary"); + } + + var dialog = new Granite.MessageDialog.with_image_from_icon_name ( + primary_label, + secondary_label, + "input-mouse", + Gtk.ButtonsType.NONE + ) { + modal = true, + transient_for = (Gtk.Window) get_toplevel () + }; + var cancel_action_button = dialog.add_button (cancel_action_label, Gtk.ResponseType.CANCEL); + + var suggested_action_button = dialog.add_button (suggested_action_label, Gtk.ResponseType.ACCEPT); + suggested_action_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); + + suggested_action_button.button_press_event.connect ((event) => { + if (event.button == Gdk.BUTTON_SECONDARY) { + suggested_action_button.activate (); + } + + return base.button_press_event (event); + }); + + cancel_action_button.button_press_event.connect ((event) => { + if (event.button == Gdk.BUTTON_SECONDARY) { + cancel_action_button.activate (); + } + + return base.button_press_event (event); + }); + + dialog.present (); + dialog.response.connect ((response) => { + if (response == Gtk.ResponseType.ACCEPT) { + if (!mouse_settings.get_boolean ("left-handed")) { + mouse_settings.set_boolean ("left-handed", true); + Configuration.get_default ().left_handed = true; + } else if (mouse_settings.get_boolean ("left-handed")) { + mouse_settings.set_boolean ("left-handed", false); + Configuration.get_default ().left_handed = false; + } + } + + dialog.destroy (); + }); + + next_step (); + } + private bool timeout () { var row = lang_variant_widget.main_listbox.get_row_at_index (select_number); if (row == null) { diff --git a/src/Views/NetworkView.vala b/src/Views/NetworkView.vala new file mode 100644 index 00000000..fb21e5d2 --- /dev/null +++ b/src/Views/NetworkView.vala @@ -0,0 +1,116 @@ +/* + * Copyright (c) 2021 elementary, Inc. (https://elementary.io) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Authored by: Marius Meisenzahl + */ + +public class Installer.NetworkView : AbstractInstallerView { + private NetworkMonitor network_monitor; + private Gtk.Button skip_button; + + construct { + var image = new Gtk.Image.from_icon_name ("preferences-system-network", Gtk.IconSize.DIALOG) { + pixel_size = 128, + valign = Gtk.Align.END + }; + + var title_label = new Gtk.Label (_("Connect Network")); + + var details_label = new Gtk.Label (_("An Internet connection is required to receive updates, install new apps, and connect to online services")) { + hexpand = true, + max_width_chars = 1, // Make Gtk wrap, but not expand the window + wrap = true, + xalign = 0 + }; + details_label.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL); + + var wireless_row = new ListRow ( + ///Translators: for RTL languages, the UI is flipped + _("Choose a nearby wireless network from the network indicator in the top right."), + "network-wireless-symbolic", + "blue" + ); + + var wired_row = new ListRow ( + _("Connect a network cable"), + "network-wired-symbolic", + "orange" + ); + + var choice_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 24) { + valign = Gtk.Align.CENTER, + vexpand = true + }; + choice_box.add (details_label); + choice_box.add (wireless_row); + choice_box.add (wired_row); + + title_area.add (image); + title_area.add (title_label); + + content_area.add (choice_box); + + var back_button = new Gtk.Button.with_label (_("Back")) { + width_request = 86 + }; + + skip_button = new Gtk.Button.with_label (_("Skip")); + skip_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); + + action_area.add (back_button); + action_area.add (skip_button); + + back_button.clicked.connect (() => ((Hdy.Deck) get_parent ()).navigate (Hdy.NavigationDirection.BACK)); + skip_button.clicked.connect (() => (next_step ())); + + network_monitor = NetworkMonitor.get_default (); + network_monitor.network_changed.connect (update); + + show_all (); + } + + private void update () { + if (network_monitor.get_network_available ()) { + network_monitor.network_changed.disconnect (update); + skip_button.label = _("Next"); + next_step (); + } + } + + private class ListRow : Gtk.Box { + public ListRow (string description, string icon_name, string color) { + var image = new Gtk.Image.from_icon_name (icon_name, Gtk.IconSize.DND) { + valign = Gtk.Align.START + }; + + unowned var image_context = image.get_style_context (); + image_context.add_class (Granite.STYLE_CLASS_ACCENT); + image_context.add_class (color); + + var description_label = new Gtk.Label (description) { + hexpand = true, + max_width_chars = 1, // Make Gtk wrap, but not expand the window + use_markup = true, + wrap = true, + xalign = 0 + }; + + spacing = 12; + add (image); + add (description_label); + } + } +} diff --git a/src/Views/ProgressView.vala b/src/Views/ProgressView.vala index e2a74697..aff7fee9 100644 --- a/src/Views/ProgressView.vala +++ b/src/Views/ProgressView.vala @@ -37,11 +37,20 @@ public class Installer.ProgressView : AbstractInstallerView { progressbar = new Gtk.ProgressBar (); progressbar.hexpand = true; + var progress_grid = new Gtk.Grid () { + column_homogeneous = true, + column_spacing = 12, + row_spacing = 12, + expand = true, + orientation = Gtk.Orientation.VERTICAL + }; + progress_grid.attach (logo_stack, 0, 0, 2, 1); + progress_grid.attach (progressbar_label, 0, 1, 1, 1); + progress_grid.attach (progressbar, 0, 2, 2, 1); + content_area.margin_end = 22; content_area.margin_start = 22; - content_area.attach (logo_stack, 0, 0, 2, 1); - content_area.attach (progressbar_label, 0, 1, 1, 1); - content_area.attach (progressbar, 0, 2, 2, 1); + content_area.add (progress_grid); get_style_context ().add_class ("progress-view"); diff --git a/src/Views/SoftwareView.vala b/src/Views/SoftwareView.vala index af705435..5769ce37 100644 --- a/src/Views/SoftwareView.vala +++ b/src/Views/SoftwareView.vala @@ -49,9 +49,10 @@ public class Installer.SoftwareView : AbstractInstallerView { form_grid.attach (additional_media_formats_description_label, 0, 1); form_grid.attach (additional_media_formats_switch, 1, 0, 1, 2); - content_area.attach (image, 0, 0, 1, 1); - content_area.attach (title_label, 0, 1, 1, 1); - content_area.attach (form_grid, 1, 0, 1, 2); + title_area.add (image); + title_area.add (title_label); + + content_area.add (form_grid); var back_button = new Gtk.Button.with_label (_("Back")); diff --git a/src/Widgets/LayoutWidget.vala b/src/Widgets/LayoutWidget.vala deleted file mode 100644 index eff0c7de..00000000 --- a/src/Widgets/LayoutWidget.vala +++ /dev/null @@ -1,52 +0,0 @@ -// -*- Mode: vala; indent-tabs-mode: nil; tab-width: 4 -*- -/*- - * Copyright (c) 2017 elementary LLC. (https://elementary.io) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -public class LayoutWidget : Gtk.Grid { - private Gkbd.KeyboardDrawing gkbd_drawing; - - static Gkbd.KeyboardDrawingGroupLevel top_left = { 0, 1 }; - static Gkbd.KeyboardDrawingGroupLevel top_right = { 0, 3 }; - static Gkbd.KeyboardDrawingGroupLevel bottom_left = { 0, 0 }; - static Gkbd.KeyboardDrawingGroupLevel bottom_right = { 0, 2 }; - static Gkbd.KeyboardDrawingGroupLevel*[] group = { &top_left, &top_right, &bottom_left, &bottom_right }; - - construct { - gkbd_drawing = new Gkbd.KeyboardDrawing (); - gkbd_drawing.parent = this; - width_request = 600; - height_request = 230; - gkbd_drawing.set_groups_levels (((unowned Gkbd.KeyboardDrawingGroupLevel)[])group); - set_layout ("gb\tcolemak"); - gkbd_drawing.show_all (); - } - - public void set_layout (string layout_id) { - gkbd_drawing.set_layout (layout_id); - } - - public override bool draw (Cairo.Context cr) { - gkbd_drawing.render (cr, - Pango.cairo_create_layout (cr), 0, 0, - get_allocated_width (), - get_allocated_height (), - 50, - 50 - ); - return true; - } -} diff --git a/src/meson.build b/src/meson.build index 0a4006d3..602b6485 100644 --- a/src/meson.build +++ b/src/meson.build @@ -12,9 +12,9 @@ vala_files = [ 'Views/AccountView.vala', 'Views/KeyboardLayoutView.vala', 'Views/LanguageView.vala', + 'Views/NetworkView.vala', 'Views/ProgressView.vala', 'Views/SoftwareView.vala', - 'Widgets/LayoutWidget.vala', 'Widgets/VariantWidget.vala' ] diff --git a/vapi/libgnomekbd.deps b/vapi/libgnomekbd.deps deleted file mode 100644 index 235732ca..00000000 --- a/vapi/libgnomekbd.deps +++ /dev/null @@ -1,3 +0,0 @@ -libxklavier -gtk+-3.0 -gobject-2.0 diff --git a/vapi/libgnomekbd.vapi b/vapi/libgnomekbd.vapi deleted file mode 100644 index d9d38f84..00000000 --- a/vapi/libgnomekbd.vapi +++ /dev/null @@ -1,214 +0,0 @@ -/* libgnomekbd.vapi generated by vapigen, do not modify. */ - -[CCode (cprefix = "Gkbd", gir_namespace = "Gkbd", gir_version = "3.0", lower_case_cprefix = "gkbd_")] -namespace Gkbd { - [CCode (cheader_filename = "libgnomekbd/gkbd-configuration.h", type_id = "gkbd_configuration_get_type ()")] - public class Configuration : GLib.Object { - [CCode (has_construct_function = false)] - protected Configuration (); - public void append_object (GLib.Object obj); - public static string create_label_title (int group, GLib.HashTable ln2cnt_map, string layout_name); - public string extract_layout_name (int group); - public void free_images (GLib.SList images); - public static Gkbd.Configuration @get (); - public unowned GLib.SList get_all_objects (); - public bool get_caps_lock_state (); - public uint get_current_group (); - public string get_current_tooltip (); - public string get_group_name (uint group); - [CCode (array_length = false, array_null_terminated = true)] - public unowned string[] get_group_names (); - public string get_image_filename (uint group); - public unowned Gkbd.IndicatorConfig? get_indicator_config (); - public unowned Gkbd.KeyboardConfig? get_keyboard_config (); - public bool get_num_lock_state (); - public bool get_scroll_lock_state (); - [CCode (array_length = false, array_null_terminated = true)] - public unowned string[] get_short_group_names (); - public unowned Xkl.Engine get_xkl_engine (); - public bool if_any_object_exists (); - public bool if_flags_shown (); - public GLib.SList load_images (); - public void lock_group (uint group); - public void lock_next_group (); - public void remove_object (GLib.Object obj); - public void start_listen (); - public void stop_listen (); - public signal void changed (); - public signal void group_changed (int object); - public signal void indicators_changed (); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-indicator.h", type_id = "gkbd_indicator_get_type ()")] - public class Indicator : Gtk.Notebook, Atk.Implementor, Gtk.Buildable { - [CCode (has_construct_function = false, type = "GtkWidget*")] - public Indicator (); - [CCode (array_length = false, array_null_terminated = true)] - public static unowned string[] get_group_names (); - public static string get_image_filename (uint group); - public static double get_max_width_height_ratio (); - public static unowned Xkl.Engine get_xkl_engine (); - public void set_angle (double angle); - public void set_parent_tooltips (bool ifset); - [HasEmitter] - public virtual signal void reinit_ui (); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", type_id = "gkbd_keyboard_drawing_get_type ()")] - public class KeyboardDrawing : Gtk.DrawingArea, Atk.Implementor, Gtk.Buildable { - [CCode (has_construct_function = false, type = "GtkWidget*")] - public KeyboardDrawing (); - [CCode (cname = "gkbd_keyboard_drawing_dialog_new", has_construct_function = false, type = "GtkWidget*")] - public KeyboardDrawing.dialog_new (); - public static void dialog_set_group (Gtk.Widget dialog, Xkl.ConfigRegistry registry, int group); - public static void dialog_set_layout (Gtk.Widget dialog, Xkl.ConfigRegistry registry, string layout); - public unowned string get_compat (); - public unowned string get_geometry (); - public unowned string get_keycodes (); - public unowned string get_symbols (); - public unowned string get_types (); - public void print (Gtk.Window parent_window, string description); - public bool render (Cairo.Context cr, Pango.Layout layout, double x, double y, double width, double height, double dpi_x, double dpi_y); - public void set_groups_levels ([CCode (array_length = false)] (unowned Gkbd.KeyboardDrawingGroupLevel)[] groupLevels); - public void set_layout (string id); - public void set_track_config (bool enable); - public void set_track_modifiers (bool enable); - public virtual signal void bad_keycode (uint keycode); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-status.h", type_id = "gkbd_status_get_type ()")] - public class Status : Gtk.StatusIcon { - [CCode (has_construct_function = false, type = "GtkStatusIcon*")] - public Status (); - [CCode (array_length = false, array_null_terminated = true)] - public static unowned string[] get_group_names (); - public static string get_image_filename (uint group); - public static unowned Xkl.Engine get_xkl_engine (); - public void reinit_ui (); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-desktop-config.h", has_type_id = false)] - public struct DesktopConfig { - public int default_group; - public bool group_per_app; - public bool handle_indicators; - public bool layout_names_as_group_names; - public bool load_extra_items; - public weak GLib.Settings settings; - public int config_listener_id; - public weak Xkl.Engine engine; - public bool activate (); - public void init (Xkl.Engine engine); - public void load (); - public bool load_group_descriptions (Xkl.ConfigRegistry registry, string layout_ids, string variant_ids, string short_group_names, string full_group_names); - public void lock_next_group (); - public void lock_prev_group (); - public void restore_group (); - public void save (); - public void start_listen (GLib.Callback func); - public void stop_listen (); - public void term (); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-indicator-config.h", has_type_id = false)] - public struct IndicatorConfig { - public int secondary_groups_mask; - public bool show_flags; - public weak string font_family; - public int font_size; - public weak string foreground_color; - public weak string background_color; - public weak GLib.Settings settings; - public weak GLib.SList image_filenames; - public weak Gtk.IconTheme icon_theme; - public int config_listener_id; - public weak Xkl.Engine engine; - public void activate (); - public void free_image_filenames (); - public string get_fg_color_for_widget (Gtk.Widget widget); - public void get_font_for_widget (Gtk.Widget widget, string font_family, int font_size); - public string get_images_file (Gkbd.KeyboardConfig kbd_config, int group); - public void init (Xkl.Engine engine); - public void load (); - public void load_image_filenames (Gkbd.KeyboardConfig kbd_config); - public void refresh_style (); - public void save (); - public void start_listen (GLib.Callback func); - public void stop_listen (); - public void term (); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-config.h", has_type_id = false)] - public struct KeyboardConfig { - public weak string model; - public weak string layouts_variants; - public weak string options; - public weak GLib.Settings settings; - public int config_listener_id; - public weak Xkl.Engine engine; - public bool activate (); - [CCode (array_length = false, array_null_terminated = true)] - public static string[] add_default_switch_option_if_necessary (string layouts_list, string options_list, bool was_appended); - public bool equals (Gkbd.KeyboardConfig kbd_config2); - public static unowned string format_full_description (string layout_descr, string variant_descr); - public static bool get_descriptions (Xkl.ConfigRegistry config_registry, string name, string layout_short_descr, string layout_descr, string variant_short_descr, string variant_descr); - public void init (Xkl.Engine engine); - public void load (Gkbd.KeyboardConfig kbd_config_default); - public void load_from_x_current (Xkl.ConfigRec buf); - public void load_from_x_initial (Xkl.ConfigRec buf); - public static unowned string merge_items (string parent, string child); - public void save (); - public static bool split_items (string merged, string parent, string child); - public void start_listen (GLib.Callback func); - public void stop_listen (); - public void term (); - public string to_string (); - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", has_type_id = false)] - public struct KeyboardDrawingDoodad { - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", has_type_id = false)] - public struct KeyboardDrawingGroupLevel { - public int group; - public int level; - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", has_type_id = false)] - public struct KeyboardDrawingItem { - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", has_type_id = false)] - public struct KeyboardDrawingKey { - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", has_type_id = false)] - public struct KeyboardDrawingRenderContext { - public weak Cairo.Context cr; - public int angle; - public weak Pango.Layout layout; - public weak Pango.FontDescription font_desc; - public int scale_numerator; - public int scale_denominator; - public Gdk.RGBA dark_color; - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", cprefix = "GKBD_KEYBOARD_DRAWING_POS_", has_type_id = false)] - public enum KeyboardDrawingGroupLevelPosition { - TOPLEFT, - TOPRIGHT, - BOTTOMLEFT, - BOTTOMRIGHT, - TOTAL, - FIRST, - LAST - } - [CCode (cheader_filename = "libgnomekbd/gkbd-keyboard-drawing.h", cprefix = "GKBD_KEYBOARD_DRAWING_ITEM_TYPE_", has_type_id = false)] - public enum KeyboardDrawingItemType { - INVALID, - KEY, - KEY_EXTRA, - DOODAD - } - [CCode (cheader_filename = "libgnomekbd/gkbd-util.h")] - public static void install_glib_log_appender (); - [CCode (cheader_filename = "libgnomekbd/gkbd-util.h")] - public static Gdk.Rectangle? preview_load_position (); - [CCode (cheader_filename = "libgnomekbd/gkbd-util.h")] - public static void preview_save_position (Gdk.Rectangle rect); - [CCode (array_length = false, array_null_terminated = true, cheader_filename = "libgnomekbd/gkbd-util.h")] - public static string[] strv_append (string arr, string element); - [CCode (cheader_filename = "libgnomekbd/gkbd-util.h")] - public static void strv_behead (string arr); - [CCode (cheader_filename = "libgnomekbd/gkbd-util.h")] - public static bool strv_remove (string arr, string element); -} From fc75a34b287678d35642a55f509da40c609942d4 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Fri, 6 Jan 2023 19:09:08 +0100 Subject: [PATCH 14/18] Add logic to install Flatpak runtime --- meson.build | 10 +- src/Config.vala.in | 10 +- src/MainWindow.vala | 95 ++++---------- src/Objects/Configuration.vala | 4 + src/Views/AccountView.vala | 172 ++---------------------- src/Views/ProgressView.vala | 233 ++++++++++++++++++++++++++++++++- src/Views/SoftwareView.vala | 18 +-- 7 files changed, 291 insertions(+), 251 deletions(-) diff --git a/meson.build b/meson.build index 7c571d88..af123a28 100644 --- a/meson.build +++ b/meson.build @@ -4,11 +4,7 @@ project( version: '6.2.2', ) -add_global_arguments( - '-DGETTEXT_PACKAGE="' + meson.project_name() + '"', - '-DI_KNOW_THE_PACKAGEKIT_GLIB2_API_IS_SUBJECT_TO_CHANGE', - language:'c' -) +add_global_arguments('-DGETTEXT_PACKAGE="' + meson.project_name() + '"', language:'c') add_project_arguments(['--vapidir', join_paths(meson.current_source_dir(), 'vapi')], language: 'vala') @@ -16,6 +12,7 @@ gnome = import('gnome') i18n = import('i18n') accountservice_dep = dependency('accountsservice') +flatpak_dep = dependency ('flatpak') gee_dep = dependency('gee-0.8') glib_dep = dependency('glib-2.0') gobject_dep = dependency('gobject-2.0') @@ -24,7 +21,6 @@ handy_dep = dependency('libhandy-1', version: '>=0.90.0') gtk_dep = dependency('gtk+-3.0') handy_dep = dependency('libhandy-1', version: '>= 0.90.0') json_glib_dep = dependency('json-glib-1.0') -packagekit_dep = dependency ('packagekit-glib2') polkit_dep = dependency('polkit-gobject-1') posix_dep = meson.get_compiler('vala').find_library('posix') pwquality_dep = dependency('pwquality') @@ -32,6 +28,7 @@ xml2_dep = dependency('libxml-2.0') dependencies = [ accountservice_dep, + flatpak_dep, gee_dep, glib_dep, gobject_dep, @@ -39,7 +36,6 @@ dependencies = [ gtk_dep, handy_dep, json_glib_dep, - packagekit_dep, polkit_dep, posix_dep, pwquality_dep, diff --git a/src/Config.vala.in b/src/Config.vala.in index 550688d7..184e5218 100644 --- a/src/Config.vala.in +++ b/src/Config.vala.in @@ -1,7 +1,7 @@ namespace Build { - public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; - public const string LANG_LIST = "@LANG_LIST@"; - public const string PREFERRED_LANG_LIST = "@PREFERRED_LANG_LIST@"; - public const string XKB_BASE = "@XKB_BASE@"; - public const string ISO_CODES_LOCATION = "@ISO_CODES_LOCATION@"; + public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; + public const string LANG_LIST = "@LANG_LIST@"; + public const string PREFERRED_LANG_LIST = "@PREFERRED_LANG_LIST@"; + public const string XKB_BASE = "@XKB_BASE@"; + public const string ISO_CODES_LOCATION = "@ISO_CODES_LOCATION@"; } diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 96102baf..bf483af5 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -24,8 +24,8 @@ public class Installer.MainWindow : Hdy.Window { private LanguageView language_view; private KeyboardLayoutView keyboard_layout_view; private NetworkView network_view; - private SoftwareView software_view; private ProgressView progress_view; + private SoftwareView software_view; construct { language_view = new LanguageView (); @@ -73,7 +73,24 @@ public class Installer.MainWindow : Hdy.Window { deck.add (network_view); deck.visible_child = network_view; - network_view.next_step.connect (load_account_view); + network_view.next_step.connect (load_software_view); + } else { + load_software_view (); + } + } + + private void load_software_view () { + if (software_view != null) { + software_view.destroy (); + } + + if (NetworkMonitor.get_default ().get_network_available ()) { + software_view = new SoftwareView (); + + deck.add (software_view); + deck.visible_child = software_view; + + software_view.next_step.connect (load_account_view); } else { load_account_view (); } @@ -89,81 +106,19 @@ public class Installer.MainWindow : Hdy.Window { deck.add (account_view); deck.visible_child = account_view; - account_view.next_step.connect (load_software_view); + account_view.next_step.connect (on_finish); } - private void load_software_view () { - if (software_view != null) { - software_view.destroy (); + private void on_finish () { + if (progress_view != null) { + progress_view.destroy (); } - software_view = new SoftwareView (); - - deck.add (software_view); - deck.visible_child = software_view; - - software_view.next_step.connect (on_finish); - } - - private void on_finish () { progress_view = new ProgressView (); + deck.add (progress_view); deck.visible_child = progress_view; - // if (account_view.created_user != null) { - // unowned Configuration configuration = Configuration.get_default (); - // progress_view.progressbar_label.label = _("Setting language"); - // account_view.created_user.set_language (configuration.lang); - - // progress_view.progressbar_label.label = _("Setting keyboard layout"); - // set_keyboard_and_locale.begin ((obj, res) => { - // set_keyboard_and_locale.end (res); - - // install_additional_packages.begin ((obj, res) => { - // install_additional_packages.end (res); - // destroy (); - // }); - // }); - // } else { - // destroy (); - // } - } - - private async void install_additional_packages () { - unowned Configuration configuration = Configuration.get_default (); - - string[] additional_packages_to_install = {}; - if (configuration.install_additional_media_formats) { - additional_packages_to_install += "gstreamer1.0-libav"; - additional_packages_to_install += "gstreamer1.0-plugins-bad"; - additional_packages_to_install += "gstreamer1.0-plugins-ugly"; - } - - additional_packages_to_install += null; - - if (additional_packages_to_install.length > 0) { - var client = new Pk.Client (); - var transaction_flags = Pk.Bitfield.from_enums (Pk.Filter.NEWEST, Pk.Filter.ARCH); - - yield client.refresh_cache_async (true, null, (progress, status) => { - progress_view.progressbar.fraction = progress.percentage; - }); - - progress_view.progressbar_label.label = _("Refreshing the package cache"); - var results = yield client.resolve_async (transaction_flags, additional_packages_to_install, null, (progress, status) => {}); - var package_array = results.get_package_array (); - - string[] packages_ids = {}; - package_array.foreach ((package) => { - packages_ids += package.package_id; - }); - - packages_ids += null; - - progress_view.progressbar_label.label = _("Installing additional packages"); - yield client.install_packages_async (transaction_flags, packages_ids, null, (progress, status) => { - progress_view.progressbar.fraction = progress.percentage; - }); - } + progress_view.start_setup (); } } diff --git a/src/Objects/Configuration.vala b/src/Objects/Configuration.vala index af884e6c..92cb5bd3 100644 --- a/src/Objects/Configuration.vala +++ b/src/Objects/Configuration.vala @@ -34,4 +34,8 @@ public class Configuration : GLib.Object { public InitialSetup.KeyboardVariant? keyboard_variant { get; set; default = null; } public bool left_handed { get; set; } public bool install_additional_media_formats { get; set; default = false; } + public string realname { get; set; } + public string username { get; set; } + public string password { get; set; } + public string hostname { get; set; } } diff --git a/src/Views/AccountView.vala b/src/Views/AccountView.vala index 70d36a93..f9f9354f 100644 --- a/src/Views/AccountView.vala +++ b/src/Views/AccountView.vala @@ -28,24 +28,6 @@ public class Installer.AccountView : AbstractInstallerView { } } - private Polkit.Permission? _permission = null; - private Polkit.Permission? permission { - get { - if (_permission != null) { - return _permission; - } - - try { - _permission = new Polkit.Permission.sync ("org.freedesktop.accounts.user-administration", new Polkit.UnixProcess (Posix.getpid ())); - } catch (Error e) { - critical (e.message); - } - - return _permission; - } - } - - public Act.User? created_user { get; private set; } private ErrorRevealer confirm_entry_revealer; private ErrorRevealer pw_error_revealer; private ErrorRevealer username_error_revealer; @@ -155,7 +137,7 @@ public class Installer.AccountView : AbstractInstallerView { width_request = 86 }; - finish_button = new Gtk.Button.with_label (_("Select")); + finish_button = new Gtk.Button.with_label (_("Finish Setup")); finish_button.can_default = true; finish_button.sensitive = false; finish_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); @@ -191,7 +173,7 @@ public class Installer.AccountView : AbstractInstallerView { update_finish_button (); }); - finish_button.clicked.connect (create_new_user); + finish_button.clicked.connect (on_finish_button_clicked); show_all (); @@ -199,6 +181,16 @@ public class Installer.AccountView : AbstractInstallerView { realname_entry.grab_focus (); } + private void on_finish_button_clicked () { + unowned var configuration = Configuration.get_default (); + configuration.realname = realname_entry.text; + configuration.username = username_entry.text; + configuration.password = pw_entry.text; + configuration.hostname = hostname_entry.text; + + next_step (); + } + private bool check_password () { if (pw_entry.text == "") { confirm_entry.text = ""; @@ -286,146 +278,6 @@ public class Installer.AccountView : AbstractInstallerView { } } - private void create_new_user () { - string? primary_text = null; - string? error_message = null; - - if (permission != null && permission.allowed) { - try { - created_user = user_manager.create_user (username_entry.text, realname_entry.text, Act.UserAccountType.ADMINISTRATOR); - set_settings.begin ((obj, res) => { - set_settings.end (res); - - Application.get_default ().quit (); - }); - } catch (Error e) { - if (created_user != null) { - try { - user_manager.delete_user (created_user, true); - } catch (Error e) { - critical ("Unable to clean up failed user: %s", e.message); - } - } - - primary_text = _("Creating an account for “%s” failed").printf (username_entry.text); - error_message = e.message; - } - } else { - primary_text = _("Couldn't get permission to create an account for “%s”").printf (username_entry.text); - } - - if (primary_text != null) { - var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( - primary_text, - _("Initial Setup could not create this account. Without it, you will not be able to log in and may need to reinstall the OS."), - "system-users", - Gtk.ButtonsType.CLOSE - ) { - badge_icon = new ThemedIcon ("dialog-error"), - modal = true, - transient_for = (Gtk.Window) get_toplevel () - }; - - if (error_message != null) { - error_dialog.show_error_details (error_message); - } - - error_dialog.present (); - error_dialog.response.connect (error_dialog.destroy); - } - } - - private async void set_settings () { - created_user.set_password (pw_entry.text, ""); - yield set_accounts_service_settings (); - yield set_locale (); - set_hostname (hostname_entry.text); - } - - public bool set_hostname (string hostname) { - string? primary_text = null; - string? error_message = null; - - try { - var permission = new Polkit.Permission.sync ("org.freedesktop.hostname1.set-static-hostname", new Polkit.UnixProcess (Posix.getpid ())); - - if (permission != null && permission.allowed) { - Utils.get_hostname_interface_instance (); - Utils.hostname_interface_instance.set_pretty_hostname (hostname, false); - Utils.hostname_interface_instance.set_static_hostname (Utils.gen_hostname (hostname), false); - } else { - primary_text = _("Couldn't get permission to name this device “%s”").printf (hostname); - } - } catch (GLib.Error e) { - primary_text = _("Unable to name this device “%s”").printf (hostname); - error_message = e.message; - } - - if (primary_text != null) { - var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( - primary_text, - _("Initial Setup could not set your hostname."), - "dialog-error", - Gtk.ButtonsType.CLOSE - ) { - modal = true, - transient_for = (Gtk.Window) get_toplevel () - }; - - if (error_message != null) { - error_dialog.show_error_details (error_message); - } - - error_dialog.present (); - error_dialog.response.connect (error_dialog.destroy); - - return false; - } - - return true; - } - - private async void set_locale () { - string lang = Configuration.get_default ().lang; - string? locale = null; - bool success = yield LocaleHelper.language2locale (lang, out locale); - - if (!success || locale == null || locale == "") { - warning ("Falling back to setting unconverted language as user's locale, may result in incorrect language"); - created_user.set_language (lang); - } else { - created_user.set_language (locale); - } - } - - private async void set_accounts_service_settings () { - AccountsService accounts_service = null; - - try { - var act_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, - "org.freedesktop.Accounts", - "/org/freedesktop/Accounts"); - var user_path = act_service.find_user_by_name (created_user.user_name); - - accounts_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, - "org.freedesktop.Accounts", - user_path, - GLib.DBusProxyFlags.GET_INVALIDATED_PROPERTIES); - } catch (Error e) { - warning ("Unable to get AccountsService proxy, settings on new user may be incorrect: %s", e.message); - } - - if (accounts_service != null) { - var layouts = Configuration.get_default ().keyboard_layout.to_accountsservice_array (); - if (Configuration.get_default ().keyboard_variant != null) { - layouts = Configuration.get_default ().keyboard_variant.to_accountsservice_array (); - } - - accounts_service.keyboard_layouts = layouts; - accounts_service.left_handed = Configuration.get_default ().left_handed; - } - } - private bool is_taken_username (string username) { foreach (unowned Act.User user in user_manager.list_users ()) { if (user.get_user_name () == username) { diff --git a/src/Views/ProgressView.vala b/src/Views/ProgressView.vala index aff7fee9..7aaabc66 100644 --- a/src/Views/ProgressView.vala +++ b/src/Views/ProgressView.vala @@ -1,5 +1,5 @@ /*- - * Copyright 2020 elementary, Inc. (https://elementary.io) + * Copyright 2023 elementary, Inc. (https://elementary.io) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,6 +20,37 @@ public class Installer.ProgressView : AbstractInstallerView { public Gtk.ProgressBar progressbar; public Gtk.Label progressbar_label; + private Act.User? created_user = null; + + private Act.UserManager _user_manager = null; + private Act.UserManager user_manager { + get { + if (_user_manager != null && _user_manager.is_loaded) { + return _user_manager; + } + + _user_manager = Act.UserManager.get_default (); + return _user_manager; + } + } + + private Polkit.Permission? _permission = null; + private Polkit.Permission? permission { + get { + if (_permission != null) { + return _permission; + } + + try { + _permission = new Polkit.Permission.sync ("org.freedesktop.accounts.user-administration", new Polkit.UnixProcess (Posix.getpid ())); + } catch (Error e) { + critical (e.message); + } + + return _permission; + } + } + construct { var logo = new Gtk.Image (); logo.icon_name = "distributor-logo"; @@ -42,6 +73,7 @@ public class Installer.ProgressView : AbstractInstallerView { column_spacing = 12, row_spacing = 12, expand = true, + hexpand = true, orientation = Gtk.Orientation.VERTICAL }; progress_grid.attach (logo_stack, 0, 0, 2, 1); @@ -56,4 +88,203 @@ public class Installer.ProgressView : AbstractInstallerView { show_all (); } + + public void start_setup () { + string? primary_text = null; + string? error_message = null; + + unowned var configuration = Configuration.get_default (); + var realname = configuration.realname; + var username = configuration.username; + + if (permission != null && permission.allowed) { + try { + progressbar_label.label = _("Create account"); + created_user = user_manager.create_user (username, realname, Act.UserAccountType.ADMINISTRATOR); + set_settings.begin ((obj, res) => { + set_settings.end (res); + + Application.get_default ().quit (); + }); + } catch (Error e) { + if (created_user != null) { + try { + user_manager.delete_user (created_user, true); + } catch (Error e) { + critical ("Unable to clean up failed user: %s", e.message); + } + } + + primary_text = _("Creating an account for “%s” failed").printf (username); + error_message = e.message; + } + } else { + primary_text = _("Couldn't get permission to create an account for “%s”").printf (username); + } + + if (primary_text != null) { + var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( + primary_text, + _("Initial Setup could not create this account. Without it, you will not be able to log in and may need to reinstall the OS."), + "system-users", + Gtk.ButtonsType.CLOSE + ) { + badge_icon = new ThemedIcon ("dialog-error"), + modal = true, + transient_for = (Gtk.Window) get_toplevel () + }; + + if (error_message != null) { + error_dialog.show_error_details (error_message); + } + + error_dialog.present (); + error_dialog.response.connect (error_dialog.destroy); + } + } + + private async void set_settings () { + progressbar_label.label = _("Set password"); + created_user.set_password (Configuration.get_default ().password, ""); + yield set_accounts_service_settings (); + yield set_locale (); + set_hostname (Configuration.get_default ().hostname); + install_software (); + } + + public bool set_hostname (string hostname) { + progressbar_label.label = _("Set hostname"); + string? primary_text = null; + string? error_message = null; + + try { + var permission = new Polkit.Permission.sync ("org.freedesktop.hostname1.set-static-hostname", new Polkit.UnixProcess (Posix.getpid ())); + + if (permission != null && permission.allowed) { + Utils.get_hostname_interface_instance (); + Utils.hostname_interface_instance.set_pretty_hostname (hostname, false); + Utils.hostname_interface_instance.set_static_hostname (Utils.gen_hostname (hostname), false); + } else { + primary_text = _("Couldn't get permission to name this device “%s”").printf (hostname); + } + } catch (GLib.Error e) { + primary_text = _("Unable to name this device “%s”").printf (hostname); + error_message = e.message; + } + + if (primary_text != null) { + var error_dialog = new Granite.MessageDialog.with_image_from_icon_name ( + primary_text, + _("Initial Setup could not set your hostname."), + "dialog-error", + Gtk.ButtonsType.CLOSE + ) { + modal = true, + transient_for = (Gtk.Window) get_toplevel () + }; + + if (error_message != null) { + error_dialog.show_error_details (error_message); + } + + error_dialog.present (); + error_dialog.response.connect (error_dialog.destroy); + + return false; + } + + return true; + } + + private async void set_locale () { + progressbar_label.label = _("Set locale"); + string lang = Configuration.get_default ().lang; + string? locale = null; + bool success = yield LocaleHelper.language2locale (lang, out locale); + + if (!success || locale == null || locale == "") { + warning ("Falling back to setting unconverted language as user's locale, may result in incorrect language"); + created_user.set_language (lang); + } else { + created_user.set_language (locale); + } + } + + private async void set_accounts_service_settings () { + progressbar_label.label = _("Set account settings"); + AccountsService accounts_service = null; + + try { + var act_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, + "org.freedesktop.Accounts", + "/org/freedesktop/Accounts"); + var user_path = act_service.find_user_by_name (created_user.user_name); + + accounts_service = yield GLib.Bus.get_proxy (GLib.BusType.SYSTEM, + "org.freedesktop.Accounts", + user_path, + GLib.DBusProxyFlags.GET_INVALIDATED_PROPERTIES); + } catch (Error e) { + warning ("Unable to get AccountsService proxy, settings on new user may be incorrect: %s", e.message); + } + + if (accounts_service != null) { + var layouts = Configuration.get_default ().keyboard_layout.to_accountsservice_array (); + if (Configuration.get_default ().keyboard_variant != null) { + layouts = Configuration.get_default ().keyboard_variant.to_accountsservice_array (); + } + + accounts_service.keyboard_layouts = layouts; + accounts_service.left_handed = Configuration.get_default ().left_handed; + } + } + + private string? architecture () { + try { + string standard_output; + int exit_status; + Process.spawn_command_line_sync ("/usr/bin/uname -p", + out standard_output, + null, + out exit_status); + + if (exit_status == 0) { + return standard_output.strip (); + } + } catch (SpawnError e) { + warning (e.message); + } + + return null; + } + + private void install_software () { + var arch = architecture (); + if (arch == null) { + return; + } + + const string REMOTE = "freedesktop"; + string REF = "runtime/org.freedesktop.Platform.ffmpeg-full/%s/22.08".printf (arch); + + var install_additional_media_formats = Configuration.get_default ().install_additional_media_formats; + + if (!install_additional_media_formats) { + return; + } + + progressbar_label.label = _("Install Software"); + + try { + var system_installation = new Flatpak.Installation.system (); + + Flatpak.Transaction transaction; + transaction = new Flatpak.Transaction.for_installation (system_installation); + transaction.add_default_dependency_sources (); + transaction.add_install (REMOTE, REF, null); + transaction.run (); + } catch (Error e) { + warning ("Unable to install additional software: %s", e.message); + } + } } diff --git a/src/Views/SoftwareView.vala b/src/Views/SoftwareView.vala index 5769ce37..b30caf5e 100644 --- a/src/Views/SoftwareView.vala +++ b/src/Views/SoftwareView.vala @@ -1,5 +1,5 @@ /*- - * Copyright 2020 elementary, Inc. (https://elementary.io) + * Copyright 2023 elementary, Inc. (https://elementary.io) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,12 +18,12 @@ public class Installer.SoftwareView : AbstractInstallerView { construct { - var image = new Gtk.Image.from_icon_name ("system-software-update", Gtk.IconSize.DIALOG); - image.valign = Gtk.Align.END; + var image = new Gtk.Image.from_icon_name ("system-software-update", Gtk.IconSize.DIALOG) { + pixel_size = 128, + valign = Gtk.Align.END + }; var title_label = new Gtk.Label (_("Software")); - title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL); - title_label.valign = Gtk.Align.START; var form_grid = new Gtk.Grid (); form_grid.row_spacing = 3; @@ -42,7 +42,7 @@ public class Installer.SoftwareView : AbstractInstallerView { var additional_media_formats_switch = new Gtk.Switch (); additional_media_formats_switch.valign = Gtk.Align.CENTER; - unowned Configuration configuration = Configuration.get_default (); + unowned var configuration = Configuration.get_default (); configuration.bind_property ("install_additional_media_formats", additional_media_formats_switch, "active", BindingFlags.BIDIRECTIONAL); form_grid.attach (additional_media_formats_name_label, 0, 0); @@ -54,9 +54,11 @@ public class Installer.SoftwareView : AbstractInstallerView { content_area.add (form_grid); - var back_button = new Gtk.Button.with_label (_("Back")); + var back_button = new Gtk.Button.with_label (_("Back")) { + width_request = 86 + }; - var next_button = new Gtk.Button.with_label (_("Finish Setup")); + var next_button = new Gtk.Button.with_label (_("Next")); next_button.sensitive = true; next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION); From 0f66e28f53fa35cd7e1a8a0b4a52507c1de336cf Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Fri, 6 Jan 2023 19:10:56 +0100 Subject: [PATCH 15/18] Satisfy linter --- src/Views/ProgressView.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Views/ProgressView.vala b/src/Views/ProgressView.vala index 7aaabc66..1ca073df 100644 --- a/src/Views/ProgressView.vala +++ b/src/Views/ProgressView.vala @@ -144,7 +144,7 @@ public class Installer.ProgressView : AbstractInstallerView { } private async void set_settings () { - progressbar_label.label = _("Set password"); + progressbar_label.label = _("Set password"); created_user.set_password (Configuration.get_default ().password, ""); yield set_accounts_service_settings (); yield set_locale (); @@ -265,7 +265,7 @@ public class Installer.ProgressView : AbstractInstallerView { } const string REMOTE = "freedesktop"; - string REF = "runtime/org.freedesktop.Platform.ffmpeg-full/%s/22.08".printf (arch); + string ref = "runtime/org.freedesktop.Platform.ffmpeg-full/%s/22.08".printf (arch); var install_additional_media_formats = Configuration.get_default ().install_additional_media_formats; @@ -281,7 +281,7 @@ public class Installer.ProgressView : AbstractInstallerView { Flatpak.Transaction transaction; transaction = new Flatpak.Transaction.for_installation (system_installation); transaction.add_default_dependency_sources (); - transaction.add_install (REMOTE, REF, null); + transaction.add_install (REMOTE, ref, null); transaction.run (); } catch (Error e) { warning ("Unable to install additional software: %s", e.message); From 1b8b4808fb6c7e4cb8258bbc2643ebb42536d5a4 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 7 Jan 2023 16:36:40 +0100 Subject: [PATCH 16/18] GitHub Actions: Install libflatpak-dev --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b9aa512d..aeda8068 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Install Dependencies run: | apt update - apt install -y desktop-file-utils gettext meson libaccountsservice-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpackagekit-glib2-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac + apt install -y desktop-file-utils gettext meson libaccountsservice-dev libflatpak-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpackagekit-glib2-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac - name: Build run: | meson build From 58529b9ece5e4e992c08f78a7c2359be6990852c Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 7 Jan 2023 17:06:20 +0100 Subject: [PATCH 17/18] Sync changes --- .github/workflows/main.yml | 2 +- README.md | 2 +- src/Views/ProgressView.vala | 4 +- vapi/Flatpak-1.0.metadata | 3 + vapi/flatpak.vapi | 551 ++++++++++++++++++++++++++++++++++++ 5 files changed, 558 insertions(+), 4 deletions(-) create mode 100644 vapi/Flatpak-1.0.metadata create mode 100644 vapi/flatpak.vapi diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aeda8068..0e62cc73 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Install Dependencies run: | apt update - apt install -y desktop-file-utils gettext meson libaccountsservice-dev libflatpak-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpackagekit-glib2-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac + apt install -y desktop-file-utils gettext meson libaccountsservice-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac - name: Build run: | meson build diff --git a/README.md b/README.md index a451a501..46e06271 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ You'll need the following dependencies: * gettext * granite >= 0.5 * libaccountsservice-dev +* libflatpak-dev * libgnomekbd-dev * libgtk-3-dev * libhandy-1-dev * libjson-glib-dev -* libpackagekit-glib2-dev * libpwquality-dev * libxml2-dev * libxml2-utils diff --git a/src/Views/ProgressView.vala b/src/Views/ProgressView.vala index 1ca073df..f98e9a74 100644 --- a/src/Views/ProgressView.vala +++ b/src/Views/ProgressView.vala @@ -265,7 +265,7 @@ public class Installer.ProgressView : AbstractInstallerView { } const string REMOTE = "freedesktop"; - string ref = "runtime/org.freedesktop.Platform.ffmpeg-full/%s/22.08".printf (arch); + string _ref = "runtime/org.freedesktop.Platform.ffmpeg-full/%s/22.08".printf (arch); var install_additional_media_formats = Configuration.get_default ().install_additional_media_formats; @@ -281,7 +281,7 @@ public class Installer.ProgressView : AbstractInstallerView { Flatpak.Transaction transaction; transaction = new Flatpak.Transaction.for_installation (system_installation); transaction.add_default_dependency_sources (); - transaction.add_install (REMOTE, ref, null); + transaction.add_install (REMOTE, _ref, null); transaction.run (); } catch (Error e) { warning ("Unable to install additional software: %s", e.message); diff --git a/vapi/Flatpak-1.0.metadata b/vapi/Flatpak-1.0.metadata new file mode 100644 index 00000000..67d07c0e --- /dev/null +++ b/vapi/Flatpak-1.0.metadata @@ -0,0 +1,3 @@ +Transaction.operation_done.commit nullable +TransactionErrorDetails.fatal name="non_fatal" +TransactionErrorDetails cprefix="FLATPAK_TRANSACTION_ERROR_DETAILS_" diff --git a/vapi/flatpak.vapi b/vapi/flatpak.vapi new file mode 100644 index 00000000..4f767d50 --- /dev/null +++ b/vapi/flatpak.vapi @@ -0,0 +1,551 @@ +/* flatpak.vapi generated by vapigen, do not modify. */ + +[CCode (cprefix = "Flatpak", gir_namespace = "Flatpak", gir_version = "1.0", lower_case_cprefix = "flatpak_")] +namespace Flatpak { + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_bundle_ref_get_type ()")] + public class BundleRef : Flatpak.Ref { + [CCode (has_construct_function = false)] + public BundleRef (GLib.File file) throws GLib.Error; + public GLib.Bytes get_appstream (); + public GLib.File get_file (); + public GLib.Bytes get_icon (int size); + public uint64 get_installed_size (); + public GLib.Bytes get_metadata (); + public string get_origin (); + [Version (since = "0.8.0")] + public string get_runtime_repo_url (); + public GLib.File file { owned get; construct; } + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_installation_get_type ()")] + public class Installation : GLib.Object { + [CCode (has_construct_function = false)] + protected Installation (); + [Version (since = "1.3.4")] + public bool add_remote (Flatpak.Remote remote, bool if_needed, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.10.0")] + public bool cleanup_local_refs_sync (GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.FileMonitor create_monitor (GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool drop_caches (GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.Bytes fetch_remote_metadata_sync (string remote_name, Flatpak.Ref @ref, GLib.Cancellable? cancellable = null) throws GLib.Error; + public Flatpak.RemoteRef fetch_remote_ref_sync (string remote_name, Flatpak.RefKind kind, string name, string? arch, string? branch, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "1.3.3")] + public Flatpak.RemoteRef fetch_remote_ref_sync_full (string remote_name, Flatpak.RefKind kind, string name, string? arch, string? branch, Flatpak.QueryFlags flags, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool fetch_remote_size_sync (string remote_name, Flatpak.Ref @ref, out uint64 download_size, out uint64 installed_size, GLib.Cancellable? cancellable = null) throws GLib.Error; + [CCode (has_construct_function = false)] + public Installation.for_path (GLib.File path, bool user, GLib.Cancellable? cancellable = null) throws GLib.Error; + public string get_config (string key, GLib.Cancellable? cancellable = null) throws GLib.Error; + public Flatpak.InstalledRef get_current_installed_app (string name, GLib.Cancellable? cancellable = null) throws GLib.Error; + [CCode (array_length = false, array_null_terminated = true)] + [Version (since = "1.5.0")] + public string[] get_default_languages () throws GLib.Error; + [CCode (array_length = false, array_null_terminated = true)] + [Version (since = "1.5.1")] + public string[] get_default_locales () throws GLib.Error; + [Version (since = "0.8")] + public unowned string get_display_name (); + [Version (since = "0.8")] + public unowned string get_id (); + public Flatpak.InstalledRef get_installed_ref (Flatpak.RefKind kind, string name, string? arch, string? branch, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool get_is_user (); + [Version (since = "1.1")] + public bool get_min_free_space_bytes (out uint64 out_bytes) throws GLib.Error; + [Version (since = "1.1.1")] + public bool get_no_interaction (); + public GLib.File get_path (); + [Version (since = "0.8")] + public int get_priority (); + public Flatpak.Remote get_remote_by_name (string name, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.8")] + public Flatpak.StorageType get_storage_type (); + [Version (deprecated = true, deprecated_since = "1.7.0")] + public Flatpak.InstalledRef install (string remote_name, Flatpak.RefKind kind, string name, string? arch, string? branch, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0")] + public Flatpak.InstalledRef install_bundle (GLib.File file, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0")] + public Flatpak.InstalledRef install_full (Flatpak.InstallFlags flags, string remote_name, Flatpak.RefKind kind, string name, string? arch, string? branch, [CCode (array_length = false, array_null_terminated = true)] string[]? subpaths, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0", since = "0.6.10")] + public Flatpak.RemoteRef install_ref_file (GLib.Bytes ref_file_data, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool launch (string name, string? arch, string? branch, string? commit, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "1.1")] + public bool launch_full (Flatpak.LaunchFlags flags, string name, string? arch, string? branch, string? commit, Flatpak.Instance? instance_out, GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.GenericArray list_installed_refs (GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.GenericArray list_installed_refs_by_kind (Flatpak.RefKind kind, GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.GenericArray list_installed_refs_for_update (GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.6.7")] + public GLib.GenericArray list_installed_related_refs_sync (string remote_name, string @ref, GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.GenericArray list_remote_refs_sync (string remote_or_uri, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "1.3.3")] + public GLib.GenericArray list_remote_refs_sync_full (string remote_or_uri, Flatpak.QueryFlags flags, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.6.7")] + public GLib.GenericArray list_remote_related_refs_sync (string remote_name, string @ref, GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.GenericArray list_remotes (GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.GenericArray list_remotes_by_type ([CCode (array_length_cname = "num_types", array_length_pos = 1.5, array_length_type = "gsize")] Flatpak.RemoteType[] types, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "1.1.2")] + public GLib.GenericArray list_unused_refs (string? arch, GLib.Cancellable? cancellable = null) throws GLib.Error; + public string load_app_overrides (string app_id, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool modify_remote (Flatpak.Remote remote, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.10.0")] + public bool prune_local_repo (GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.10.0")] + public bool remove_local_ref_sync (string remote_name, string @ref, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool remove_remote (string name, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "1.0.3")] + public bool run_triggers (GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool set_config_sync (string key, string value, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "1.1.1")] + public void set_no_interaction (bool no_interaction); + [CCode (has_construct_function = false)] + public Installation.system (GLib.Cancellable? cancellable = null) throws GLib.Error; + [CCode (has_construct_function = false)] + [Version (since = "0.8")] + public Installation.system_with_id (string? id, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0")] + public bool uninstall (Flatpak.RefKind kind, string name, string? arch, string? branch, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0", since = "0.11.8")] + public bool uninstall_full (Flatpak.UninstallFlags flags, Flatpak.RefKind kind, string name, string? arch, string? branch, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0")] + public Flatpak.InstalledRef update (Flatpak.UpdateFlags flags, Flatpak.RefKind kind, string name, string? arch, string? branch, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool update_appstream_full_sync (string remote_name, string? arch, bool? out_changed, GLib.Cancellable? cancellable = null) throws GLib.Error; + public bool update_appstream_sync (string remote_name, string? arch, bool? out_changed, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (deprecated = true, deprecated_since = "1.7.0")] + public Flatpak.InstalledRef update_full (Flatpak.UpdateFlags flags, Flatpak.RefKind kind, string name, string? arch, string? branch, [CCode (array_length = false, array_null_terminated = true)] string[]? subpaths, GLib.Cancellable? cancellable = null) throws GLib.Error; + [Version (since = "0.6.13")] + public bool update_remote_sync (string name, GLib.Cancellable? cancellable = null) throws GLib.Error; + [CCode (has_construct_function = false)] + public Installation.user (GLib.Cancellable? cancellable = null) throws GLib.Error; + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_installed_ref_get_type ()")] + public class InstalledRef : Flatpak.Ref { + [CCode (has_construct_function = false)] + protected InstalledRef (); + [Version (since = "1.4.2")] + public unowned GLib.HashTable? get_appdata_content_rating (); + [Version (since = "1.4.2")] + public unowned string? get_appdata_content_rating_type (); + [Version (since = "1.1.2")] + public unowned string get_appdata_license (); + [Version (since = "1.1.2")] + public unowned string get_appdata_name (); + [Version (since = "1.1.2")] + public unowned string get_appdata_summary (); + [Version (since = "1.1.2")] + public unowned string get_appdata_version (); + public unowned string get_deploy_dir (); + public unowned string get_eol (); + public unowned string get_eol_rebase (); + public uint64 get_installed_size (); + public bool get_is_current (); + public unowned string? get_latest_commit (); + public unowned string get_origin (); + [CCode (array_length = false, array_null_terminated = true)] + public unowned string[] get_subpaths (); + [Version (since = "1.1.2")] + public GLib.Bytes load_appdata (GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.Bytes load_metadata (GLib.Cancellable? cancellable = null) throws GLib.Error; + public GLib.HashTable appdata_content_rating { get; construct; } + public string appdata_content_rating_type { get; construct; } + public string appdata_license { get; construct; } + public string appdata_name { get; construct; } + public string appdata_summary { get; construct; } + public string appdata_version { get; construct; } + [NoAccessorMethod] + public string deploy_dir { owned get; set; } + [NoAccessorMethod] + public string end_of_life { owned get; construct; } + [NoAccessorMethod] + public string end_of_life_rebase { owned get; construct; } + [NoAccessorMethod] + public uint64 installed_size { get; set; } + [NoAccessorMethod] + public bool is_current { get; set; } + [NoAccessorMethod] + public string latest_commit { owned get; set; } + [NoAccessorMethod] + public string origin { owned get; set; } + [CCode (array_length = false, array_null_terminated = true)] + [NoAccessorMethod] + public string[] subpaths { owned get; set; } + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_instance_get_type ()")] + public class Instance : GLib.Object { + [CCode (has_construct_function = false)] + protected Instance (); + [Version (since = "1.1")] + public static GLib.GenericArray get_all (); + [Version (since = "1.1")] + public unowned string get_app (); + [Version (since = "1.1")] + public unowned string get_arch (); + [Version (since = "1.1")] + public unowned string get_branch (); + [Version (since = "1.1")] + public int get_child_pid (); + [Version (since = "1.1")] + public unowned string get_commit (); + [Version (since = "1.1")] + public unowned string get_id (); + [Version (since = "1.1")] + public GLib.KeyFile get_info (); + [Version (since = "1.1")] + public int get_pid (); + [Version (since = "1.1")] + public unowned string get_runtime (); + [Version (since = "1.1")] + public unowned string get_runtime_commit (); + public bool is_running (); + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_ref_get_type ()")] + public class Ref : GLib.Object { + [CCode (has_construct_function = false)] + protected Ref (); + public string format_ref (); + public unowned string get_arch (); + public unowned string get_branch (); + public unowned string get_collection_id (); + public unowned string get_commit (); + public Flatpak.RefKind get_kind (); + public unowned string get_name (); + public static Flatpak.Ref parse (string @ref) throws GLib.Error; + public string arch { get; construct; } + public string branch { get; construct; } + public string collection_id { get; construct; } + public string commit { get; construct; } + public Flatpak.RefKind kind { get; construct; } + public string name { get; construct; } + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_related_ref_get_type ()")] + public class RelatedRef : Flatpak.Ref { + [CCode (has_construct_function = false)] + protected RelatedRef (); + [CCode (array_length = false, array_null_terminated = true)] + [Version (since = "0.6.7")] + public unowned string[] get_subpaths (); + [NoAccessorMethod] + public bool should_autoprune { get; construct; } + [NoAccessorMethod] + public bool should_delete { get; construct; } + [NoAccessorMethod] + public bool should_download { get; construct; } + [CCode (array_length = false, array_null_terminated = true)] + public string[] subpaths { get; construct; } + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_remote_get_type ()")] + public class Remote : GLib.Object { + [CCode (has_construct_function = false)] + public Remote (string name); + [CCode (has_construct_function = false)] + [Version (since = "1.3.4")] + public Remote.from_file (string name, GLib.Bytes data) throws GLib.Error; + public GLib.File get_appstream_dir (string? arch); + public GLib.File get_appstream_timestamp (string? arch); + public string? get_collection_id (); + [Version (since = "1.4")] + public string get_comment (); + [Version (since = "0.6.12")] + public string get_default_branch (); + [Version (since = "1.4")] + public string get_description (); + public bool get_disabled (); + [Version (since = "1.4")] + public string get_filter (); + public bool get_gpg_verify (); + [Version (since = "1.4")] + public string get_homepage (); + [Version (since = "1.4")] + public string get_icon (); + [Version (since = "1.1.1")] + public string get_main_ref (); + public unowned string get_name (); + public bool get_nodeps (); + public bool get_noenumerate (); + public int get_prio (); + [Version (since = "0.9.8")] + public Flatpak.RemoteType get_remote_type (); + public string get_title (); + public string get_url (); + public void set_collection_id (string? collection_id); + [Version (since = "1.4")] + public void set_comment (string comment); + [Version (since = "0.6.12")] + public void set_default_branch (string default_branch); + [Version (since = "1.4")] + public void set_description (string description); + public void set_disabled (bool disabled); + [Version (since = "1.4")] + public void set_filter (string filter_path); + public void set_gpg_key (GLib.Bytes gpg_key); + public void set_gpg_verify (bool gpg_verify); + [Version (since = "1.4")] + public void set_homepage (string homepage); + [Version (since = "1.4")] + public void set_icon (string icon); + [Version (since = "1.1.1")] + public void set_main_ref (string main_ref); + public void set_nodeps (bool nodeps); + public void set_noenumerate (bool noenumerate); + public void set_prio (int prio); + public void set_title (string title); + public void set_url (string url); + [NoAccessorMethod] + public string name { owned get; set; } + [NoAccessorMethod] + [Version (since = "0.9.8")] + public Flatpak.RemoteType type { get; construct; } + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_remote_ref_get_type ()")] + public class RemoteRef : Flatpak.Ref { + [CCode (has_construct_function = false)] + protected RemoteRef (); + public uint64 get_download_size (); + public unowned string get_eol (); + public unowned string get_eol_rebase (); + public uint64 get_installed_size (); + public unowned GLib.Bytes? get_metadata (); + public unowned string get_remote_name (); + public uint64 download_size { get; construct; } + [NoAccessorMethod] + public string end_of_life { owned get; construct; } + [NoAccessorMethod] + public string end_of_life_rebase { owned get; construct; } + public uint64 installed_size { get; construct; } + public GLib.Bytes metadata { get; construct; } + public string remote_name { get; construct; } + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_transaction_get_type ()")] + public class Transaction : GLib.Object, GLib.Initable { + [CCode (has_construct_function = false)] + protected Transaction (); + [Version (since = "1.5.1")] + public void abort_webflow (uint id); + public void add_default_dependency_sources (); + public void add_dependency_source (Flatpak.Installation installation); + public bool add_install (string remote, string @ref, [CCode (array_length = false, array_null_terminated = true)] string[]? subpaths) throws GLib.Error; + public bool add_install_bundle (GLib.File file, GLib.Bytes? gpg_data) throws GLib.Error; + public bool add_install_flatpakref (GLib.Bytes flatpakref_data) throws GLib.Error; + [Version (since = "1.3.3.")] + public bool add_rebase (string remote, string @ref, string? subpaths, [CCode (array_length = false, array_null_terminated = true)] string[]? previous_ids) throws GLib.Error; + [Version (since = "1.7.1")] + public void add_sideload_repo (string path); + public bool add_uninstall (string @ref) throws GLib.Error; + public bool add_update (string @ref, [CCode (array_length = false, array_null_terminated = true)] string[]? subpaths, string? commit) throws GLib.Error; + [Version (since = "1.5.2")] + public void complete_basic_auth (uint id, string user, string password, GLib.Variant options); + [CCode (has_construct_function = false)] + public Transaction.for_installation (Flatpak.Installation installation, GLib.Cancellable? cancellable = null) throws GLib.Error; + public Flatpak.TransactionOperation get_current_operation (); + public Flatpak.Installation get_installation (); + [Version (since = "1.5.1")] + public bool get_no_deploy (); + [Version (since = "1.5.1")] + public bool get_no_pull (); + public GLib.List get_operations (); + [Version (since = "1.5.1")] + public unowned string get_parent_window (); + public bool is_empty (); + public virtual bool run (GLib.Cancellable? cancellable = null) throws GLib.Error; + public void set_default_arch (string arch); + public void set_disable_dependencies (bool disable_dependencies); + public void set_disable_prune (bool disable_prune); + public void set_disable_related (bool disable_related); + public void set_disable_static_deltas (bool disable_static_deltas); + public void set_force_uninstall (bool force_uninstall); + public void set_no_deploy (bool no_deploy); + [Version (since = "1.7.3")] + public void set_no_interaction (bool no_interaction); + public void set_no_pull (bool no_pull); + [Version (since = "1.5.1")] + public void set_parent_window (string parent_window); + public void set_reinstall (bool reinstall); + public Flatpak.Installation installation { owned get; construct; } + public virtual signal bool add_new_remote (Flatpak.TransactionRemoteReason reason, string from_id, string remote_name, string url); + [Version (since = "1.5.2")] + public virtual signal bool basic_auth_start (string remote, string realm, GLib.Variant options, int id); + public virtual signal int choose_remote_for_ref (string for_ref, string runtime_ref, [CCode (array_length = false, array_null_terminated = true)] string[] remotes); + public virtual signal void end_of_lifed (string @ref, string reason, string rebase); + public virtual signal bool end_of_lifed_with_rebase (string remote, string @ref, string reason, string rebased_to_ref, [CCode (array_length = false, array_null_terminated = true)] string[] previous_ids); + [Version (since = "1.7.4")] + public virtual signal void install_authenticator (string remote, string authenticator_ref); + public virtual signal void new_operation (Flatpak.TransactionOperation operation, Flatpak.TransactionProgress progress); + public virtual signal void operation_done (Flatpak.TransactionOperation operation, string? commit, Flatpak.TransactionResult details); + public virtual signal bool operation_error (Flatpak.TransactionOperation operation, GLib.Error error, Flatpak.TransactionErrorDetails detail); + public virtual signal bool ready (); + [Version (since = "1.5.1")] + public virtual signal void webflow_done (GLib.Variant options, int id); + [Version (since = "1.5.1")] + public virtual signal bool webflow_start (string remote, string url, GLib.Variant options, int id); + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_transaction_operation_get_type ()")] + public class TransactionOperation : GLib.Object { + [CCode (has_construct_function = false)] + protected TransactionOperation (); + public unowned GLib.File get_bundle_path (); + public unowned string get_commit (); + [Version (since = "1.1.2")] + public uint64 get_download_size (); + [Version (since = "1.1.2")] + public uint64 get_installed_size (); + [Version (since = "1.7.3")] + public bool get_is_skipped (); + public unowned GLib.KeyFile get_metadata (); + public unowned GLib.KeyFile get_old_metadata (); + public Flatpak.TransactionOperationType get_operation_type (); + public unowned string get_ref (); + [Version (since = "1.7.3")] + public unowned GLib.GenericArray? get_related_to_ops (); + public unowned string get_remote (); + } + [CCode (cheader_filename = "flatpak.h", type_id = "flatpak_transaction_progress_get_type ()")] + public class TransactionProgress : GLib.Object { + [CCode (has_construct_function = false)] + protected TransactionProgress (); + [Version (since = "1.1.2")] + public uint64 get_bytes_transferred (); + public bool get_is_estimating (); + public int get_progress (); + [Version (since = "1.1.2")] + public uint64 get_start_time (); + public string get_status (); + public void set_update_frequency (uint update_interval); + public signal void changed (); + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_INSTALL_FLAGS_", type_id = "flatpak_install_flags_get_type ()")] + [Flags] + public enum InstallFlags { + NONE, + NO_STATIC_DELTAS, + NO_DEPLOY, + NO_PULL, + NO_TRIGGERS + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_LAUNCH_FLAGS_", type_id = "flatpak_launch_flags_get_type ()")] + [Flags] + public enum LaunchFlags { + NONE, + DO_NOT_REAP + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_QUERY_FLAGS_", type_id = "flatpak_query_flags_get_type ()")] + [Flags] + [Version (since = "1.3.3")] + public enum QueryFlags { + NONE, + ONLY_CACHED, + ONLY_SIDELOADED + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_REF_KIND_", type_id = "flatpak_ref_kind_get_type ()")] + public enum RefKind { + APP, + RUNTIME + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_REMOTE_TYPE_", type_id = "flatpak_remote_type_get_type ()")] + public enum RemoteType { + STATIC, + USB, + LAN + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_STORAGE_TYPE_", type_id = "flatpak_storage_type_get_type ()")] + [Version (since = "0.6.15")] + public enum StorageType { + DEFAULT, + HARD_DISK, + SDCARD, + MMC, + NETWORK + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_TRANSACTION_ERROR_DETAILS_", type_id = "flatpak_transaction_error_details_get_type ()")] + [Flags] + public enum TransactionErrorDetails { + NON_FATAL + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_TRANSACTION_OPERATION_", type_id = "flatpak_transaction_operation_type_get_type ()")] + public enum TransactionOperationType { + INSTALL, + UPDATE, + INSTALL_BUNDLE, + UNINSTALL, + LAST_TYPE; + public unowned string to_string (); + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_TRANSACTION_REMOTE_", type_id = "flatpak_transaction_remote_reason_get_type ()")] + public enum TransactionRemoteReason { + GENERIC_REPO, + RUNTIME_DEPS + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_TRANSACTION_RESULT_NO_", type_id = "flatpak_transaction_result_get_type ()")] + [Flags] + public enum TransactionResult { + CHANGE + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_UNINSTALL_FLAGS_", type_id = "flatpak_uninstall_flags_get_type ()")] + [Flags] + [Version (since = "0.11.8")] + public enum UninstallFlags { + NONE, + NO_PRUNE, + NO_TRIGGERS + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_UPDATE_FLAGS_", type_id = "flatpak_update_flags_get_type ()")] + [Flags] + public enum UpdateFlags { + NONE, + NO_DEPLOY, + NO_PULL, + NO_STATIC_DELTAS, + NO_PRUNE, + NO_TRIGGERS + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_ERROR_")] + public errordomain Error { + ALREADY_INSTALLED, + NOT_INSTALLED, + ONLY_PULLED, + DIFFERENT_REMOTE, + ABORTED, + SKIPPED, + NEED_NEW_FLATPAK, + REMOTE_NOT_FOUND, + RUNTIME_NOT_FOUND, + DOWNGRADE, + INVALID_REF, + INVALID_DATA, + UNTRUSTED, + SETUP_FAILED, + EXPORT_FAILED, + REMOTE_USED, + RUNTIME_USED, + INVALID_NAME, + OUT_OF_SPACE, + WRONG_USER, + NOT_CACHED, + REF_NOT_FOUND, + PERMISSION_DENIED, + AUTHENTICATION_FAILED, + NOT_AUTHORIZED; + public static GLib.Quark quark (); + } + [CCode (cheader_filename = "flatpak.h", cprefix = "FLATPAK_PORTAL_ERROR_")] + public errordomain PortalError { + FAILED, + INVALID_ARGUMENT, + NOT_FOUND, + EXISTS, + NOT_ALLOWED, + CANCELLED, + WINDOW_DESTROYED; + public static GLib.Quark quark (); + } + [CCode (cheader_filename = "flatpak.h", instance_pos = 3.9)] + public delegate void ProgressCallback (string status, uint progress, bool estimating); + [CCode (cheader_filename = "flatpak.h", cname = "FLATPAK_MAJOR_VERSION")] + public const int MAJOR_VERSION; + [CCode (cheader_filename = "flatpak.h", cname = "FLATPAK_MICRO_VERSION")] + public const int MICRO_VERSION; + [CCode (cheader_filename = "flatpak.h", cname = "FLATPAK_MINOR_VERSION")] + public const int MINOR_VERSION; + [CCode (cheader_filename = "flatpak.h")] + public static unowned string get_default_arch (); + [CCode (array_length = false, array_null_terminated = true, cheader_filename = "flatpak.h")] + public static unowned string[] get_supported_arches (); + [CCode (cheader_filename = "flatpak.h")] + [Version (since = "0.8")] + public static GLib.GenericArray get_system_installations (GLib.Cancellable? cancellable = null) throws GLib.Error; +} From 5c69ca3baa9a8981ad6ef09c09e986bee12250a3 Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Sat, 7 Jan 2023 17:11:56 +0100 Subject: [PATCH 18/18] Sync changes --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e62cc73..f1955ed6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Install Dependencies run: | apt update - apt install -y desktop-file-utils gettext meson libaccountsservice-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac + apt install -y desktop-file-utils gettext meson libaccountsservice-dev libflatpak-dev libgtk-3-dev libgee-0.8-dev libgranite-dev libhandy-1-dev libxml2-dev libjson-glib-dev libgnomekbd-dev libpolkit-gobject-1-dev libpwquality-dev libxml2-utils valac - name: Build run: | meson build