diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml index 3f5087d51..e04c26294 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -5,24 +5,17 @@ on: branches: [master] jobs: - build: - runs-on: ubuntu-22.04 - container: - image: ghcr.io/elementary/docker:next-unstable + gettext_template: + runs-on: ubuntu-latest steps: - - name: Install git - run: | - apt-get update - apt-get install git -y - - name: Clone repository uses: actions/checkout@v4 with: token: ${{ secrets.GIT_USER_TOKEN }} - name: Update Translation Files - uses: elementary/actions/gettext-template@next + uses: elementary/actions/gettext-template@main env: GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} GIT_USER_NAME: "elementaryBot" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f385598c0..ebb1076d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,9 +18,9 @@ jobs: version: [stable, unstable, development-target] include: - version: stable - mutter_pkg: libmutter-10-dev + mutter_pkg: libmutter-14-dev - version: unstable - mutter_pkg: libmutter-10-dev + mutter_pkg: libmutter-14-dev - version: development-target mutter_pkg: libmutter-14-dev container: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d9a340a7..f4b282602 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,4 +16,4 @@ jobs: GIT_USER_NAME: "elementaryBot" GIT_USER_EMAIL: "builds@elementary.io" with: - release_branch: 'odin' + release_branch: 'noble' diff --git a/compositor/PantheonShell.vala b/compositor/PantheonShell.vala new file mode 100644 index 000000000..e53b69eff --- /dev/null +++ b/compositor/PantheonShell.vala @@ -0,0 +1,355 @@ +/* + * Copyright 2023 elementary, Inc. + * Copyright 2023 Corentin Noël + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +namespace GreeterCompositor { +#if !HAS_MUTTER45 + [Compact] + public class FakeMetaWaylandCompositor : GLib.Object { + // It is the third field and Vala adds a FakeMetaWaylandCompositorPrivate *priv + public Wl.Display wayland_display; + + [CCode (cname = "meta_context_get_wayland_compositor")] + public extern static unowned GreeterCompositor.FakeMetaWaylandCompositor from_context (Meta.Context context); + } +#endif + public static inline unowned Wl.Display? get_display_from_context (Meta.Context context) { +#if HAS_MUTTER45 + unowned Meta.WaylandCompositor? compositor = context.get_wayland_compositor (); + if (compositor == null) { + return null; + } + + return (Wl.Display) compositor.get_wayland_display (); +#else + unowned FakeMetaWaylandCompositor compositor = GreeterCompositor.FakeMetaWaylandCompositor.from_context (context); + if (compositor == null) { + return null; + } + + return compositor.wayland_display; +#endif + } + + private static Pantheon.Desktop.ShellInterface wayland_pantheon_shell_interface; + private static Pantheon.Desktop.PanelInterface wayland_pantheon_panel_interface; + private static Pantheon.Desktop.WidgetInterface wayland_pantheon_widget_interface; + private static Pantheon.Desktop.ExtendedBehaviorInterface wayland_pantheon_extended_behavior_interface; + private static Wl.Global shell_global; + + public void init_pantheon_shell (Meta.Context context) { + unowned Wl.Display? wl_disp = get_display_from_context (context); + if (wl_disp == null) { + debug ("Not running under Wayland, no Pantheon Shell protocol"); + return; + } + + wayland_pantheon_shell_interface = { + get_panel, + get_widget, + get_extended_behavior, + }; + + wayland_pantheon_panel_interface = { + destroy_panel_surface, + set_anchor, + focus_panel, + set_size, + }; + + wayland_pantheon_widget_interface = { + destroy_widget_surface, + }; + + wayland_pantheon_extended_behavior_interface = { + destroy_extended_behavior_surface, + set_keep_above, + make_centered, + focus_extended_behavior, + }; + + PanelSurface.quark = GLib.Quark.from_string ("-gala-wayland-panel-surface-data"); + WidgetSurface.quark = GLib.Quark.from_string ("-gala-wayland-widget-surface-data"); + ExtendedBehaviorSurface.quark = GLib.Quark.from_string ("-gala-wayland-extended-behavior-surface-data"); + + shell_global = Wl.Global.create (wl_disp, ref Pantheon.Desktop.ShellInterface.iface, 1, (client, version, id) => { + unowned var resource = client.create_resource (ref Pantheon.Desktop.ShellInterface.iface, (int) version, id); + resource.set_implementation (&wayland_pantheon_shell_interface, null, (res) => {}); + }); + } + + public class PanelSurface : GLib.Object { + public static GLib.Quark quark = 0; + public unowned GLib.Object? wayland_surface; + + public PanelSurface (GLib.Object wayland_surface) { + this.wayland_surface = wayland_surface; + } + + ~PanelSurface () { + if (wayland_surface != null) { + wayland_surface.steal_qdata (quark); + } + } + + public void on_wayland_surface_disposed () { + wayland_surface = null; + } + } + + public class WidgetSurface : GLib.Object { + public static GLib.Quark quark = 0; + public unowned GLib.Object? wayland_surface; + + public WidgetSurface (GLib.Object wayland_surface) { + this.wayland_surface = wayland_surface; + } + + ~WidgetSurface () { + if (wayland_surface != null) { + wayland_surface.steal_qdata (quark); + } + } + + public void on_wayland_surface_disposed () { + wayland_surface = null; + } + } + + public class ExtendedBehaviorSurface : GLib.Object { + public static GLib.Quark quark = 0; + public unowned GLib.Object? wayland_surface; + + public ExtendedBehaviorSurface (GLib.Object wayland_surface) { + this.wayland_surface = wayland_surface; + } + + ~ExtendedBehaviorSurface () { + if (wayland_surface != null) { + wayland_surface.steal_qdata (quark); + } + } + + public void on_wayland_surface_disposed () { + wayland_surface = null; + } + } + + static void unref_obj_on_destroy (Wl.Resource resource) { + resource.get_user_data ().unref (); + } + + internal static void get_panel (Wl.Client client, Wl.Resource resource, uint32 output, Wl.Resource surface_resource) { + unowned GLib.Object? wayland_surface = surface_resource.get_user_data (); + PanelSurface? panel_surface = wayland_surface.get_qdata (PanelSurface.quark); + if (panel_surface != null) { + surface_resource.post_error ( + Wl.DisplayError.INVALID_OBJECT, + "io_elementary_pantheon_shell_v1_interface::get_panel already requested" + ); + return; + } + + panel_surface = new PanelSurface (wayland_surface); + unowned var panel_resource = client.create_resource ( + ref Pantheon.Desktop.PanelInterface.iface, + resource.get_version (), + output + ); + panel_resource.set_implementation ( + &wayland_pantheon_panel_interface, + panel_surface.ref (), + unref_obj_on_destroy + ); + wayland_surface.set_qdata_full ( + PanelSurface.quark, + panel_surface, + (GLib.DestroyNotify) PanelSurface.on_wayland_surface_disposed + ); + } + + internal static void get_widget (Wl.Client client, Wl.Resource resource, uint32 output, Wl.Resource surface_resource) { + unowned GLib.Object? wayland_surface = surface_resource.get_user_data (); + WidgetSurface? widget_surface = wayland_surface.get_qdata (WidgetSurface.quark); + if (widget_surface != null) { + surface_resource.post_error ( + Wl.DisplayError.INVALID_OBJECT, + "io_elementary_pantheon_shell_v1_interface::get_widget already requested" + ); + return; + } + + widget_surface = new WidgetSurface (wayland_surface); + unowned var widget_resource = client.create_resource ( + ref Pantheon.Desktop.WidgetInterface.iface, + resource.get_version (), + output + ); + widget_resource.set_implementation ( + &wayland_pantheon_widget_interface, + widget_surface.ref (), + unref_obj_on_destroy + ); + wayland_surface.set_qdata_full ( + WidgetSurface.quark, + widget_surface, + (GLib.DestroyNotify) WidgetSurface.on_wayland_surface_disposed + ); + } + + internal static void get_extended_behavior (Wl.Client client, Wl.Resource resource, uint32 output, Wl.Resource surface_resource) { + unowned GLib.Object? wayland_surface = surface_resource.get_user_data (); + ExtendedBehaviorSurface? eb_surface = wayland_surface.get_qdata (ExtendedBehaviorSurface.quark); + if (eb_surface != null) { + surface_resource.post_error ( + Wl.DisplayError.INVALID_OBJECT, + "io_elementary_pantheon_shell_v1_interface::get_extended_behavior already requested" + ); + return; + } + + eb_surface = new ExtendedBehaviorSurface (wayland_surface); + unowned var eb_resource = client.create_resource ( + ref Pantheon.Desktop.ExtendedBehaviorInterface.iface, + resource.get_version (), + output + ); + eb_resource.set_implementation ( + &wayland_pantheon_extended_behavior_interface, + eb_surface.ref (), + unref_obj_on_destroy + ); + wayland_surface.set_qdata_full ( + ExtendedBehaviorSurface.quark, + eb_surface, + (GLib.DestroyNotify) ExtendedBehaviorSurface.on_wayland_surface_disposed + ); + } + + internal static void set_anchor (Wl.Client client, Wl.Resource resource, [CCode (type = "uint32_t")] Pantheon.Desktop.Anchor anchor) { + unowned PanelSurface? panel_surface = resource.get_user_data (); + if (panel_surface.wayland_surface == null) { + warning ("Window tried to set anchor but wayland surface is null."); + return; + } + + Meta.Window? window; + panel_surface.wayland_surface.get ("window", out window, null); + if (window == null) { + warning ("Window tried to set anchor but wayland surface had no associated window."); + return; + } + + Meta.Side side = TOP; + switch (anchor) { + case TOP: + break; + + case BOTTOM: + side = BOTTOM; + break; + + case LEFT: + side = LEFT; + break; + + case RIGHT: + side = RIGHT; + break; + } + + ShellClientsManager.get_instance ().set_anchor (window, side); + } + + internal static void focus_panel (Wl.Client client, Wl.Resource resource) { + unowned PanelSurface? panel_surface = resource.get_user_data (); + if (panel_surface.wayland_surface == null) { + warning ("Window tried to focus but wayland surface is null."); + return; + } + + focus (panel_surface.wayland_surface); + } + + internal static void focus_extended_behavior (Wl.Client client, Wl.Resource resource) { + unowned ExtendedBehaviorSurface? extended_behavior_surface = resource.get_user_data (); + if (extended_behavior_surface.wayland_surface == null) { + warning ("Window tried to focus but wayland surface is null."); + return; + } + + focus (extended_behavior_surface.wayland_surface); + } + + internal static void focus (Object wayland_surface) { + Meta.Window? window; + wayland_surface.get ("window", out window, null); + if (window == null) { + warning ("Window tried to focus but wayland surface had no associated window."); + return; + } + + window.focus (window.get_display ().get_current_time ()); + } + + internal static void set_size (Wl.Client client, Wl.Resource resource, int width, int height) { + unowned PanelSurface? panel_surface = resource.get_user_data (); + if (panel_surface.wayland_surface == null) { + warning ("Window tried to set size but wayland surface is null."); + return; + } + + Meta.Window? window; + panel_surface.wayland_surface.get ("window", out window, null); + if (window == null) { + warning ("Window tried to set size but wayland surface had no associated window."); + return; + } + + ShellClientsManager.get_instance ().set_size (window, width, height); + } + + internal static void set_keep_above (Wl.Client client, Wl.Resource resource) { + unowned ExtendedBehaviorSurface? eb_surface = resource.get_user_data (); + if (eb_surface.wayland_surface == null) { + return; + } + + Meta.Window? window; + eb_surface.wayland_surface.get ("window", out window, null); + if (window == null) { + return; + } + + window.make_above (); + } + + internal static void make_centered (Wl.Client client, Wl.Resource resource) { + unowned ExtendedBehaviorSurface? eb_surface = resource.get_user_data (); + if (eb_surface.wayland_surface == null) { + return; + } + + Meta.Window? window; + eb_surface.wayland_surface.get ("window", out window, null); + if (window == null) { + return; + } + + ShellClientsManager.get_instance ().make_centered (window); + } + + internal static void destroy_panel_surface (Wl.Client client, Wl.Resource resource) { + resource.destroy (); + } + + internal static void destroy_widget_surface (Wl.Client client, Wl.Resource resource) { + resource.destroy (); + } + + internal static void destroy_extended_behavior_surface (Wl.Client client, Wl.Resource resource) { + resource.destroy (); + } +} diff --git a/src/SettingsDaemon.vala b/compositor/SettingsDaemon.vala similarity index 88% rename from src/SettingsDaemon.vala rename to compositor/SettingsDaemon.vala index 4d75f246b..737976ca1 100644 --- a/src/SettingsDaemon.vala +++ b/compositor/SettingsDaemon.vala @@ -17,14 +17,14 @@ * Authored by: Michael Terry */ -public class Greeter.SettingsDaemon : Object { - private Greeter.GnomeSessionManager session_manager; +public class GreeterCompositor.SettingsDaemon : Object { + private GreeterCompositor.GnomeSessionManager session_manager; private int n_names = 0; private SubprocessSupervisor[] supervisors = {}; public void start () { /* Pretend to be GNOME session */ - session_manager = new Greeter.GnomeSessionManager (); + session_manager = new GreeterCompositor.GnomeSessionManager (); n_names++; GLib.Bus.own_name (BusType.SESSION, "org.gnome.SessionManager", BusNameOwnerFlags.NONE, (c) => { @@ -60,7 +60,7 @@ public class Greeter.SettingsDaemon : Object { foreach (var daemon in daemons) { try { - supervisors += new Greeter.SubprocessSupervisor ({Constants.GSD_DIR + daemon}); + supervisors += new GreeterCompositor.SubprocessSupervisor ({Constants.GSD_DIR + daemon}); } catch (GLib.Error e) { critical ("Could not start %s: %s", daemon, e.message); } @@ -69,9 +69,9 @@ public class Greeter.SettingsDaemon : Object { } [DBus (name="org.gnome.SessionManager")] -public class Greeter.GnomeSessionManager : GLib.Object { - private Gee.ArrayList clients; - private Gee.ArrayList inhibitors; +public class GreeterCompositor.GnomeSessionManager : GLib.Object { + private Gee.ArrayList clients; + private Gee.ArrayList inhibitors; public string session_name { owned get; set; default = "pantheon"; } public string renderer { owned get; set; default = ""; } @@ -86,8 +86,8 @@ public class Greeter.GnomeSessionManager : GLib.Object { public signal void session_over (); construct { - clients = new Gee.ArrayList (); - inhibitors = new Gee.ArrayList (); + clients = new Gee.ArrayList (); + inhibitors = new Gee.ArrayList (); } public void setenv (string variable, string value) throws GLib.Error { @@ -188,7 +188,7 @@ public class Greeter.GnomeSessionManager : GLib.Object { } [DBus (name = "org.gnome.SessionManager.Client")] -public class Greeter.GnomeSessionManagerClient : GLib.Object { +public class GreeterCompositor.GnomeSessionManagerClient : GLib.Object { static uint32 serial_id = 0; private string app_id; @@ -203,7 +203,7 @@ public class Greeter.GnomeSessionManagerClient : GLib.Object { try { var session_bus = GLib.Bus.get_sync (GLib.BusType.SESSION); - session_bus.register_object (object_path, this); + session_bus.register_object (object_path, this); } catch (Error e) { critical (e.message); } diff --git a/compositor/ShellClients/CenteredWindow.vala b/compositor/ShellClients/CenteredWindow.vala new file mode 100644 index 000000000..7b75b27ab --- /dev/null +++ b/compositor/ShellClients/CenteredWindow.vala @@ -0,0 +1,55 @@ +/* + * Copyright 2024 elementary, Inc. (https://elementary.io) + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Authored by: Leonhard Kargl + */ + +public class GreeterCompositor.CenteredWindow : Object { + public WindowManager wm { get; construct; } + public Meta.Window window { get; construct; } + + private uint idle_move_id = 0; + + public CenteredWindow (WindowManager wm, Meta.Window window) { + Object (wm: wm, window: window); + } + + construct { + window.size_changed.connect (position_window); + window.stick (); + + var monitor_manager = wm.get_display ().get_context ().get_backend ().get_monitor_manager (); + monitor_manager.monitors_changed.connect (() => position_window ()); + + position_window (); + + window.shown.connect (() => window.focus (wm.get_display ().get_current_time ())); + + window.unmanaging.connect (() => { + if (idle_move_id != 0) { + Source.remove (idle_move_id); + } + }); + } + + private void position_window () { + var display = wm.get_display (); + var monitor_geom = display.get_monitor_geometry (display.get_primary_monitor ()); + var window_rect = window.get_frame_rect (); + + var x = monitor_geom.x + (monitor_geom.width - window_rect.width) / 2; + var y = monitor_geom.y + (monitor_geom.height - window_rect.height) / 2; + + if (idle_move_id != 0) { + Source.remove (idle_move_id); + } + + idle_move_id = Idle.add (() => { + window.move_frame (false, x, y); + + idle_move_id = 0; + return Source.REMOVE; + }); + } +} diff --git a/compositor/ShellClients/ManagedClient.vala b/compositor/ShellClients/ManagedClient.vala new file mode 100644 index 000000000..51f579204 --- /dev/null +++ b/compositor/ShellClients/ManagedClient.vala @@ -0,0 +1,87 @@ +/* + * Copyright 2024 elementary, Inc. (https://elementary.io) + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Authored by: Leonhard Kargl + */ + +/** + * Utility class that takes care of launching and restarting a subprocess. + * On wayland this uses a WaylandClient and emits window_created if a window for the client was created. + * On X this just launches a normal subprocess and never emits window_created. + */ +public class GreeterCompositor.ManagedClient : Object { + public signal void window_created (Meta.Window window); + + public Meta.Display display { get; construct; } + public string[] args { get; construct; } + + public Meta.WaylandClient? wayland_client { get; private set; } + + private Subprocess? subprocess; + + public ManagedClient (Meta.Display display, string[] args) { + Object (display: display, args: args); + } + + construct { + if (Meta.Util.is_wayland_compositor ()) { + start_wayland.begin (); + + display.window_created.connect ((window) => { + if (wayland_client != null && wayland_client.owns_window (window)) { + window_created (window); + + // We have to manage is alive manually since windows created by WaylandClients have our pid + // and we don't want to end our own process + window.notify["is-alive"].connect (() => { + if (!window.is_alive && subprocess != null) { + subprocess.force_exit (); + warning ("WaylandClient window became unresponsive, killing the client."); + } + }); + } + }); + } else { + start_x.begin (); + } + } + + private async void start_wayland () { + var subprocess_launcher = new GLib.SubprocessLauncher (STDERR_PIPE | STDOUT_PIPE); + try { +#if HAS_MUTTER44 + wayland_client = new Meta.WaylandClient (display.get_context (), subprocess_launcher); +#else + wayland_client = new Meta.WaylandClient (subprocess_launcher); +#endif + subprocess = wayland_client.spawnv (display, args); + + yield subprocess.wait_async (); + + //Restart the daemon if it crashes + Timeout.add_seconds (1, () => { + start_wayland.begin (); + return Source.REMOVE; + }); + } catch (Error e) { + warning ("Failed to create dock client: %s", e.message); + return; + } + } + + private async void start_x () { + try { + subprocess = new Subprocess.newv (args, NONE); + yield subprocess.wait_async (); + + //Restart the daemon if it crashes + Timeout.add_seconds (1, () => { + start_x.begin (); + return Source.REMOVE; + }); + } catch (Error e) { + warning ("Failed to create daemon subprocess with x: %s", e.message); + } + } +} diff --git a/compositor/ShellClients/NotificationsClient.vala b/compositor/ShellClients/NotificationsClient.vala new file mode 100644 index 000000000..b0819cc4d --- /dev/null +++ b/compositor/ShellClients/NotificationsClient.vala @@ -0,0 +1,34 @@ +/* + * Copyright 2024 elementary, Inc. (https://elementary.io) + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Authored by: Leonhard Kargl + */ + +/** + * Used as a key for Object.set_data on Meta.Windows that should be + * treated as notifications. Has to be set before the window is mapped. + */ +public const string NOTIFICATION_DATA_KEY = "elementary-notification"; + +public class GreeterCompositor.NotificationsClient : Object { + public Meta.Display display { get; construct; } + + private ManagedClient client; + + public NotificationsClient (Meta.Display display) { + Object (display: display); + } + + construct { + client = new ManagedClient (display, { "io.elementary.notifications" }); + + client.window_created.connect ((window) => { + window.set_data (NOTIFICATION_DATA_KEY, true); + window.make_above (); +#if HAS_MUTTER46 + client.wayland_client.make_dock (window); +#endif + }); + } +} diff --git a/compositor/ShellClients/PanelClone.vala b/compositor/ShellClients/PanelClone.vala new file mode 100644 index 000000000..f639b4668 --- /dev/null +++ b/compositor/ShellClients/PanelClone.vala @@ -0,0 +1,111 @@ +/* + * Copyright 2024 elementary, Inc. (https://elementary.io) + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Authored by: Leonhard Kargl + */ + +public class GreeterCompositor.PanelClone : Object { + private const int ANIMATION_DURATION = 250; + + public WindowManager wm { get; construct; } + public unowned PanelWindow panel { get; construct; } + + public Pantheon.Desktop.HideMode hide_mode { + get { + return NEVER; + } + set { + show (); + } + } + + public bool panel_hidden { get; private set; default = true; } + + private SafeWindowClone clone; + private Meta.WindowActor actor; + + public PanelClone (WindowManager wm, PanelWindow panel) { + Object (wm: wm, panel: panel); + } + + construct { + clone = new SafeWindowClone (panel.window, true); + wm.ui_group.add_child (clone); + + actor = (Meta.WindowActor) panel.window.get_compositor_private (); + // WindowActor position and Window position aren't necessarily the same. + // The clone needs the actor position + actor.notify["x"].connect (update_clone_position); + actor.notify["y"].connect (update_clone_position); + // Actor visibility might be changed by something else e.g. workspace switch + // but we want to keep it in sync with us + actor.notify["visible"].connect (update_visible); + + notify["panel-hidden"].connect (() => { + update_visible (); + }); + + update_visible (); + update_clone_position (); + + Idle.add_once (() => { + show (); + }); + } + + private void update_visible () { + actor.visible = !panel_hidden; + } + + private void update_clone_position () { + clone.set_position (calculate_clone_x (panel_hidden), calculate_clone_y (panel_hidden)); + } + + private float calculate_clone_x (bool hidden) { + switch (panel.anchor) { + case TOP: + case BOTTOM: + return actor.x; + default: + return 0; + } + } + + private float calculate_clone_y (bool hidden) { + switch (panel.anchor) { + case TOP: + return hidden ? actor.y - actor.height : actor.y; + case BOTTOM: + return hidden ? actor.y + actor.height : actor.y; + default: + return 0; + } + } + + private int get_animation_duration () { + var fullscreen = wm.get_display ().get_monitor_in_fullscreen (panel.window.get_monitor ()); + var should_animate = !fullscreen; + return should_animate ? ANIMATION_DURATION : 0; + } + + public void show () { + if (!panel_hidden) { + return; + } + + var animation_duration = get_animation_duration (); + + clone.save_easing_state (); + clone.set_easing_mode (Clutter.AnimationMode.EASE_OUT_QUAD); + clone.set_easing_duration (animation_duration); + clone.y = calculate_clone_y (false); + clone.restore_easing_state (); + + Timeout.add (animation_duration, () => { + clone.visible = false; + panel_hidden = false; + return Source.REMOVE; + }); + } +} diff --git a/compositor/ShellClients/PanelWindow.vala b/compositor/ShellClients/PanelWindow.vala new file mode 100644 index 000000000..422013b0d --- /dev/null +++ b/compositor/ShellClients/PanelWindow.vala @@ -0,0 +1,198 @@ +/* + * Copyright 2024 elementary, Inc. (https://elementary.io) + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Authored by: Leonhard Kargl + */ + +public class GreeterCompositor.PanelWindow : Object { + private const int BARRIER_OFFSET = 50; // Allow hot corner trigger + + private static HashTable window_struts = new HashTable (null, null); + + public WindowManager wm { get; construct; } + public Meta.Window window { get; construct; } + + public bool hidden { get; private set; default = false; } + + public Meta.Side anchor; + + private PanelClone clone; + + private uint idle_move_id = 0; + + private int width = -1; + private int height = -1; + + public PanelWindow (WindowManager wm, Meta.Window window, Meta.Side anchor) { + Object (wm: wm, window: window); + + // Meta.Side seems to be currently not supported as GLib.Object property ...? + // At least it always crashed for me with some paramspec, g_type_fundamental backtrace + this.anchor = anchor; + } + + construct { + window.size_changed.connect (position_window); + + window.unmanaging.connect (() => { + if (idle_move_id != 0) { + Source.remove (idle_move_id); + } + + if (window_struts.remove (window)) { + update_struts (); + } + }); + + window.stick (); + + clone = new PanelClone (wm, this); + + var monitor_manager = wm.get_display ().get_context ().get_backend ().get_monitor_manager (); + monitor_manager.monitors_changed.connect (() => update_anchor (anchor)); + + var workspace_manager = wm.get_display ().get_workspace_manager (); + workspace_manager.workspace_added.connect (update_strut); + workspace_manager.workspace_removed.connect (update_strut); + } + +#if HAS_MUTTER46 + public Mtk.Rectangle get_custom_window_rect () { +#else + public Meta.Rectangle get_custom_window_rect () { +#endif + var window_rect = window.get_frame_rect (); + + if (width > 0) { + window_rect.width = width; + } + + if (height > 0) { + window_rect.height = height; + } + + return window_rect; + } + + public void set_size (int width, int height) { + this.width = width; + this.height = height; + + position_window (); + set_hide_mode (clone.hide_mode); // Resetup barriers etc. + } + + public void update_anchor (Meta.Side anchor) { + this.anchor = anchor; + + position_window (); + set_hide_mode (clone.hide_mode); // Resetup barriers etc. + } + + private void position_window () { + var display = wm.get_display (); + var monitor_geom = display.get_monitor_geometry (display.get_primary_monitor ()); + var window_rect = get_custom_window_rect (); + + switch (anchor) { + case TOP: + position_window_top (monitor_geom, window_rect); + break; + + case BOTTOM: + position_window_bottom (monitor_geom, window_rect); + break; + + default: + warning ("Side not supported yet"); + break; + } + + update_strut (); + } + +#if HAS_MUTTER45 + private void position_window_top (Mtk.Rectangle monitor_geom, Mtk.Rectangle window_rect) { +#else + private void position_window_top (Meta.Rectangle monitor_geom, Meta.Rectangle window_rect) { +#endif + var x = monitor_geom.x + (monitor_geom.width - window_rect.width) / 2; + + move_window_idle (x, monitor_geom.y); + } + +#if HAS_MUTTER45 + private void position_window_bottom (Mtk.Rectangle monitor_geom, Mtk.Rectangle window_rect) { +#else + private void position_window_bottom (Meta.Rectangle monitor_geom, Meta.Rectangle window_rect) { +#endif + var x = monitor_geom.x + (monitor_geom.width - window_rect.width) / 2; + var y = monitor_geom.y + monitor_geom.height - window_rect.height; + + move_window_idle (x, y); + } + + private void move_window_idle (int x, int y) { + if (idle_move_id != 0) { + Source.remove (idle_move_id); + } + + idle_move_id = Idle.add (() => { + window.move_frame (false, x, y); + + idle_move_id = 0; + return Source.REMOVE; + }); + } + + public void set_hide_mode (Pantheon.Desktop.HideMode hide_mode) { + clone.hide_mode = hide_mode; + + if (hide_mode == NEVER) { + make_exclusive (); + } else { + unmake_exclusive (); + } + } + + private void make_exclusive () { + update_strut (); + } + + private void update_strut () { + if (clone.hide_mode != NEVER) { + return; + } + + var rect = get_custom_window_rect (); + + Meta.Strut strut = { + rect, + anchor + }; + + window_struts[window] = strut; + + update_struts (); + } + + private void update_struts () { + var list = new SList (); + + foreach (var window_strut in window_struts.get_values ()) { + list.append (window_strut); + } + + foreach (var workspace in wm.get_display ().get_workspace_manager ().get_workspaces ()) { + workspace.set_builtin_struts (list); + } + } + + private void unmake_exclusive () { + if (window in window_struts) { + window_struts.remove (window); + update_struts (); + } + } +} diff --git a/compositor/ShellClients/ShellClientsManager.vala b/compositor/ShellClients/ShellClientsManager.vala new file mode 100644 index 000000000..4256c7b81 --- /dev/null +++ b/compositor/ShellClients/ShellClientsManager.vala @@ -0,0 +1,209 @@ +/* + * Copyright 2024 elementary, Inc. (https://elementary.io) + * SPDX-License-Identifier: GPL-3.0-or-later + * + * Authored by: Leonhard Kargl + */ + +public class GreeterCompositor.ShellClientsManager : Object { + private static ShellClientsManager instance; + + public static void init (WindowManager wm) { + if (instance != null) { + return; + } + + instance = new ShellClientsManager (wm); + } + + public static ShellClientsManager? get_instance () { + return instance; + } + + public WindowManager wm { get; construct; } + + private NotificationsClient notifications_client; + private ManagedClient[] protocol_clients = {}; + + private GLib.HashTable windows = new GLib.HashTable (null, null); + private GLib.HashTable centered_windows = new GLib.HashTable (null, null); + + private ShellClientsManager (WindowManager wm) { + Object (wm: wm); + } + + construct { + notifications_client = new NotificationsClient (wm.get_display ()); + + start_clients.begin (); + + if (!Meta.Util.is_wayland_compositor ()) { + wm.get_display ().window_created.connect ((window) => { + window.notify["mutter-hints"].connect ((obj, pspec) => parse_mutter_hints ((Meta.Window) obj)); + parse_mutter_hints (window); + }); + } + } + + private async void start_clients () { + protocol_clients += new ManagedClient (wm.get_display (), { "io.elementary.wingpanel", "-g" }); + } + + public void make_dock (Meta.Window window) { + if (Meta.Util.is_wayland_compositor ()) { + make_dock_wayland (window); + } else { + make_dock_x11 (window); + } + } + + private void make_dock_wayland (Meta.Window window) requires (Meta.Util.is_wayland_compositor ()) { + foreach (var client in protocol_clients) { + if (client.wayland_client.owns_window (window)) { + client.wayland_client.make_dock (window); + break; + } + } + } + + private void make_dock_x11 (Meta.Window window) requires (!Meta.Util.is_wayland_compositor ()) { + unowned var x11_display = wm.get_display ().get_x11_display (); + +#if HAS_MUTTER46 + var x_window = x11_display.lookup_xwindow (window); +#else + var x_window = window.get_xwindow (); +#endif + // gtk3's gdk_x11_window_set_type_hint() is used as a reference + unowned var xdisplay = x11_display.get_xdisplay (); + var atom = xdisplay.intern_atom ("_NET_WM_WINDOW_TYPE", false); + var dock_atom = xdisplay.intern_atom ("_NET_WM_WINDOW_TYPE_DOCK", false); + + // (X.Atom) 4 is XA_ATOM + // 32 is format + // 0 means replace + xdisplay.change_property (x_window, atom, (X.Atom) 4, 32, 0, (uchar[]) dock_atom, 1); + } + + public void set_anchor (Meta.Window window, Meta.Side side) { + if (window in windows) { + windows[window].update_anchor (side); + return; + } + + make_dock (window); + // TODO: Return if requested by window that's not a trusted client? + + windows[window] = new PanelWindow (wm, window, side); + + // connect_after so we make sure the PanelWindow can destroy its barriers and struts + window.unmanaging.connect_after (() => windows.remove (window)); + } + + /** + * The size given here is only used for the hide mode. I.e. struts + * and collision detection with other windows use this size. By default + * or if set to -1 the size of the window is used. + * + * TODO: Maybe use for strut only? + */ + public void set_size (Meta.Window window, int width, int height) { + if (!(window in windows)) { + warning ("Set anchor for window before size."); + return; + } + + windows[window].set_size (width, height); + } + + public void set_hide_mode (Meta.Window window, Pantheon.Desktop.HideMode hide_mode) { + if (!(window in windows)) { + warning ("Set anchor for window before hide mode."); + return; + } + + windows[window].set_hide_mode (hide_mode); + } + + public void make_centered (Meta.Window window) { + if (window in centered_windows) { + return; + } + + centered_windows[window] = new CenteredWindow (wm, window); + + window.unmanaging.connect_after (() => centered_windows.remove (window)); + } + + public bool is_positioned_window (Meta.Window window) { + bool positioned = (window in centered_windows) || (window in windows); + window.foreach_ancestor ((ancestor) => { + if (ancestor in centered_windows || ancestor in windows) { + positioned = true; + } + + return !positioned; + }); + + return positioned; + } + + //X11 only + private void parse_mutter_hints (Meta.Window window) requires (!Meta.Util.is_wayland_compositor ()) { + if (window.mutter_hints == null) { + return; + } + + var mutter_hints = window.mutter_hints.split (":"); + foreach (var mutter_hint in mutter_hints) { + var split = mutter_hint.split ("="); + + if (split.length != 2) { + continue; + } + + var key = split[0]; + var val = split[1]; + + switch (key) { + case "anchor": + int parsed; // Will be used as Meta.Side which is a 4 value bitfield so check bounds for that + if (int.try_parse (val, out parsed) && 0 <= parsed && parsed <= 15) { + set_anchor (window, parsed); + } else { + warning ("Failed to parse %s as anchor", val); + } + break; + + case "hide-mode": + int parsed; // Will be used as Pantheon.Desktop.HideMode which is a 5 value enum so check bounds for that + if (int.try_parse (val, out parsed) && 0 <= parsed && parsed <= 4) { + set_hide_mode (window, parsed); + } else { + warning ("Failed to parse %s as hide mode", val); + } + break; + + case "size": + var split_val = val.split (","); + if (split_val.length != 2) { + break; + } + int parsed_width, parsed_height = 0; //set to 0 because vala doesn't realize height will be set too + if (int.try_parse (split_val[0], out parsed_width) && int.try_parse (split_val[1], out parsed_height)) { + set_size (window, parsed_width, parsed_height); + } else { + warning ("Failed to parse %s as width and height", val); + } + break; + + case "centered": + make_centered (window); + break; + + default: + break; + } + } + } +} diff --git a/src/SubprocessSupervisor.vala b/compositor/SubprocessSupervisor.vala similarity index 95% rename from src/SubprocessSupervisor.vala rename to compositor/SubprocessSupervisor.vala index 33d5d8d3e..29d89c98b 100644 --- a/src/SubprocessSupervisor.vala +++ b/compositor/SubprocessSupervisor.vala @@ -19,7 +19,7 @@ * Authors: Corentin Noël */ -public class Greeter.SubprocessSupervisor : GLib.Object { +public class GreeterCompositor.SubprocessSupervisor : GLib.Object { public signal void spawned (GLib.Subprocess subprocess); private GLib.Subprocess subprocess; diff --git a/compositor/Widgets/SafeWindowClone.vala b/compositor/Widgets/SafeWindowClone.vala new file mode 100644 index 000000000..ff11abf72 --- /dev/null +++ b/compositor/Widgets/SafeWindowClone.vala @@ -0,0 +1,66 @@ +// +// Copyright (C) 2014 Tom Beckmann +// +// 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 . +// + +namespace GreeterCompositor { + /** + * A clone for a MetaWindowActor that will guard against the + * meta_window_appears_focused crash by disabling painting the clone + * as soon as it gets unavailable. + */ + public class SafeWindowClone : Clutter.Clone { + public Meta.Window window { get; construct; } + + /** + * If set to true, the SafeWindowClone will destroy itself when the connected + * window is unmanaged + */ + public bool destroy_on_unmanaged { get; construct set; default = false; } + + /** + * Creates a new SafeWindowClone + * + * @param window The window to clone from + * @param destroy_on_unmanaged see destroy_on_unmanaged property + */ + public SafeWindowClone (Meta.Window window, bool destroy_on_unmanaged = false) { + var actor = (Meta.WindowActor) window.get_compositor_private (); + + Object (window: window, + source: actor, + destroy_on_unmanaged: destroy_on_unmanaged); + } + + construct { + if (source != null) + window.unmanaged.connect (reset_source); + } + + ~SafeWindowClone () { + window.unmanaged.disconnect (reset_source); + } + + private void reset_source () { + // actually destroying the clone will be handled somewhere else (unless we were + // requested to destroy it), we just need to make sure the clone doesn't attempt + // to draw a clone of a window that has been destroyed + source = null; + + if (destroy_on_unmanaged) + destroy (); + } + } +} diff --git a/compositor/WindowManager.vala b/compositor/WindowManager.vala index 6071ba419..91c22dce4 100644 --- a/compositor/WindowManager.vala +++ b/compositor/WindowManager.vala @@ -210,8 +210,12 @@ namespace GreeterCompositor { Idle.add (() => { // let the session manager move to the next phase display.get_context ().notify_ready (); - start_command.begin ({ "io.elementary.greeter" }); - start_command.begin ({ "io.elementary.wingpanel", "-g" }); + ShellClientsManager.init (this); + + if (GLib.Environment.get_variable ("DESKTOP_SESSION") != "installer") { + start_command.begin ({ "io.elementary.greeter" }); + } + return GLib.Source.REMOVE; }); } diff --git a/compositor/main.vala b/compositor/main.vala index 7073637b7..df2e12ed7 100644 --- a/compositor/main.vala +++ b/compositor/main.vala @@ -32,6 +32,9 @@ namespace GreeterCompositor { // overrides GLib.Environment.set_variable ("XDG_CURRENT_DESKTOP", "Pantheon", true); + var settings_daemon = new SettingsDaemon (); + settings_daemon.start (); + var ctx = new Meta.Context ("Mutter(GreeterCompositor)"); ctx.add_option_entries (GreeterCompositor.OPTIONS, Constants.GETTEXT_PACKAGE); try { diff --git a/compositor/meson.build b/compositor/meson.build index db72ec7f0..d5ef13baa 100644 --- a/compositor/meson.build +++ b/compositor/meson.build @@ -84,6 +84,14 @@ compositor_files = files( 'Background/BackgroundSource.vala', 'Background/BlurEffect.vala', 'Background/SystemBackground.vala', + 'PantheonShell.vala', + 'ShellClients/CenteredWindow.vala', + 'ShellClients/ManagedClient.vala', + 'ShellClients/NotificationsClient.vala', + 'ShellClients/PanelClone.vala', + 'ShellClients/PanelWindow.vala', + 'ShellClients/ShellClientsManager.vala', + 'Widgets/SafeWindowClone.vala', 'WingpanelManager/WingpanelManager.vala', 'WingpanelManager/DBusWingpanelManager.vala', 'WingpanelManager/FocusManager.vala', @@ -95,6 +103,8 @@ compositor_files = files( 'main.vala', 'MediaFeedback.vala', 'PointerLocator.vala', + 'SettingsDaemon.vala', + 'SubprocessSupervisor.vala', 'Utils.vala', 'WindowManager.vala', 'Zoom.vala' @@ -105,7 +115,7 @@ executable( compositor_files, compositor_resources, config_header, - dependencies: [glib_dep, gtk_dep, gee_dep, m_dep, posix_dep, mutter_dep, gnome_desktop_dep], + dependencies: [glib_dep, gtk_dep, gee_dep, m_dep, posix_dep, mutter_dep, gnome_desktop_dep, pantheon_desktop_shell_dep], vala_args: vala_flags, c_args: compositor_c_args, build_rpath: mutter_typelib_dir, diff --git a/data/greeter.metainfo.xml.in b/data/greeter.metainfo.xml.in index a2d88a1e5..137c1961d 100644 --- a/data/greeter.metainfo.xml.in +++ b/data/greeter.metainfo.xml.in @@ -16,7 +16,7 @@ - https://raw.githubusercontent.com/elementary/greeter/7.0.0/data/screenshot.png + https://raw.githubusercontent.com/elementary/greeter/8.0.0/data/screenshot.png @@ -37,7 +37,7 @@ contact_at_elementary.io - +

New Features:

    diff --git a/data/io.elementary.greeter.desktop.in.in b/data/io.elementary.greeter.desktop.in similarity index 61% rename from data/io.elementary.greeter.desktop.in.in rename to data/io.elementary.greeter.desktop.in index f8ad388d4..6117e0782 100644 --- a/data/io.elementary.greeter.desktop.in.in +++ b/data/io.elementary.greeter.desktop.in @@ -3,5 +3,3 @@ Name=Pantheon Greeter Comment=Pantheon Greeter Exec=@PROJECT_NAME@-compositor Type=Application -X-Ubuntu-Gettext-Domain=@GETTEXT_PACKAGE@ -Name[en_US]=@PROJECT_NAME@ diff --git a/data/meson.build b/data/meson.build index 4e407c890..9c5553ba0 100644 --- a/data/meson.build +++ b/data/meson.build @@ -9,18 +9,11 @@ install_data( ) desktop_in = configure_file ( - input: meson.project_name() + '.desktop.in.in', - output: meson.project_name() + '.desktop.in', - configuration: conf_data -) - -i18n.merge_file ( - input: desktop_in, + input: meson.project_name() + '.desktop.in', output: meson.project_name() + '.desktop', install: true, install_dir: join_paths(get_option('datadir'), 'xgreeters'), - po_dir: join_paths(meson.project_source_root (), 'po'), - type: 'desktop' + configuration: conf_data ) i18n.merge_file( diff --git a/data/screenshot.png b/data/screenshot.png index 480693943..24908884d 100644 Binary files a/data/screenshot.png and b/data/screenshot.png differ diff --git a/meson.build b/meson.build index 647178008..b420f94fe 100644 --- a/meson.build +++ b/meson.build @@ -1,12 +1,13 @@ project( 'io.elementary.greeter', 'vala', 'c', - version: '7.0.0', + version: '8.0.0', meson_version: '>= 0.58.0' ) gnome = import('gnome') i18n = import('i18n') +vala = meson.get_compiler('vala') conf_data = configuration_data() conf_data.set('CONF_DIR', join_paths(get_option('sysconfdir'), 'lightdm')) @@ -47,6 +48,7 @@ compositor_resources = gnome.compile_resources( source_dir: 'data' ) +subdir('protocol') subdir('src') subdir('compositor') subdir('data') diff --git a/po/POTFILES b/po/POTFILES index 065a6ad4b..47d1268b1 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -17,6 +17,8 @@ compositor/KeyboardManager.vala compositor/main.vala compositor/MediaFeedback.vala compositor/PointerLocator.vala +compositor/SettingsDaemon.vala +compositor/SubprocessSupervisor.vala compositor/Utils.vala compositor/WindowManager.vala src/Application.vala @@ -24,9 +26,7 @@ src/FPrintUtils.vala src/MainWindow.vala src/PantheonAccountsServicePlugin.vala src/PromptText.vala -src/SettingsDaemon.vala src/Settings.vala -src/SubprocessSupervisor.vala src/Cards/BaseCard.vala src/Cards/ManualCard.vala src/Cards/UserCard.vala diff --git a/po/aa.po b/po/aa.po index 548892206..de2e5fcfc 100644 --- a/po/aa.po +++ b/po/aa.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ab.po b/po/ab.po index 548892206..de2e5fcfc 100644 --- a/po/ab.po +++ b/po/ab.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ace.po b/po/ace.po index e62059b3b..43bfb287a 100644 --- a/po/ace.po +++ b/po/ace.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2013-06-12 04:40+0000\n" "Last-Translator: Eduard Gotwig \n" "Language-Team: Acehnese \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ae.po b/po/ae.po index 548892206..de2e5fcfc 100644 --- a/po/ae.po +++ b/po/ae.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/af.po b/po/af.po index 3b24487da..ff3a6b476 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Afrikaans \n" -"Language-Team: Akan " -"\n" +"Language-Team: Akan \n" "Language: ak\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -16,22 +16,22 @@ msgstr "" "X-Generator: Weblate 5.6.2\n" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/am.po b/po/am.po index 74775471c..4637fd7b6 100644 --- a/po/am.po +++ b/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2017-01-04 19:20+0000\n" "Last-Translator: samson \n" "Language-Team: Amharic \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/an.po b/po/an.po index 229067f8a..ca4d07de1 100644 --- a/po/an.po +++ b/po/an.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2014-11-04 07:58+0000\n" "Last-Translator: Vahan Harutyunyan \n" "Language-Team: Aragonese \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ar.po b/po/ar.po index b157bedc8..2558b7f8d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-11-09 13:10+0000\n" "Last-Translator: aalhaif \n" "Language-Team: Arabic \n" "Language-Team: Asturian \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/av.po b/po/av.po index 548892206..de2e5fcfc 100644 --- a/po/av.po +++ b/po/av.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ay.po b/po/ay.po index 548892206..de2e5fcfc 100644 --- a/po/ay.po +++ b/po/ay.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/az.po b/po/az.po index f860eac18..6bf4f7163 100644 --- a/po/az.po +++ b/po/az.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-08-07 17:16+0000\n" "Last-Translator: anonymous \n" "Language-Team: Azerbaijani \n" "Language-Team: Belarusian \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/bo.po b/po/bo.po index 548892206..de2e5fcfc 100644 --- a/po/bo.po +++ b/po/bo.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/br.po b/po/br.po index 548892206..de2e5fcfc 100644 --- a/po/br.po +++ b/po/br.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/bs.po b/po/bs.po index 43e85e329..c4de9f505 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2018-11-22 00:02+0000\n" "Last-Translator: Elvis Mujanović \n" "Language-Team: Bosnian \n" "Language-Team: Catalan \n" "Language-Team: Kurdish (Central) \n" "Language-Team: Czech \n" "Language-Team: Danish \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: English (Australia) \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po index 74aa0bcb7..4ee87bfe1 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-08-07 17:16+0000\n" "Last-Translator: anonymous \n" "Language-Team: English (Canada) \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Basque \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/extra/aa.po b/po/extra/aa.po index 7cebad706..631497124 100644 --- a/po/extra/aa.po +++ b/po/extra/aa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ab.po b/po/extra/ab.po index b791dfcc8..238c53e5f 100644 --- a/po/extra/ab.po +++ b/po/extra/ab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ace.po b/po/extra/ace.po index 2af2896d3..f89f3e6d7 100644 --- a/po/extra/ace.po +++ b/po/extra/ace.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ae.po b/po/extra/ae.po index cdc1a1ad8..45f43cb22 100644 --- a/po/extra/ae.po +++ b/po/extra/ae.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/af.po b/po/extra/af.po index 9b0f977fc..bb0e0e10e 100644 --- a/po/extra/af.po +++ b/po/extra/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ak.po b/po/extra/ak.po index 71550d560..87ad38299 100644 --- a/po/extra/ak.po +++ b/po/extra/ak.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/am.po b/po/extra/am.po index be106a382..7150ba462 100644 --- a/po/extra/am.po +++ b/po/extra/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2021-09-26 21:30+0000\n" "Last-Translator: carnage-mode \n" "Language-Team: Amharic \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" @@ -28,6 +28,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "افتح أو سجل الدخول إلى جهازك" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -72,9 +76,6 @@ msgstr "التحسينات:" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "إضافة تتبع الإصبع باللمس المتعدد" diff --git a/po/extra/as.po b/po/extra/as.po index e08e91b39..936a56a9c 100644 --- a/po/extra/as.po +++ b/po/extra/as.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ast.po b/po/extra/ast.po index 1ddf33d82..7b5d5d7c0 100644 --- a/po/extra/ast.po +++ b/po/extra/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/av.po b/po/extra/av.po index e6010c9fe..4747dcb0d 100644 --- a/po/extra/av.po +++ b/po/extra/av.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ay.po b/po/extra/ay.po index 575065815..5673badf5 100644 --- a/po/extra/ay.po +++ b/po/extra/ay.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/az.po b/po/extra/az.po index 8c28dd845..bb037a31a 100644 --- a/po/extra/az.po +++ b/po/extra/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ba.po b/po/extra/ba.po index 2a94a2d0f..92b176d89 100644 --- a/po/extra/ba.po +++ b/po/extra/ba.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/be.po b/po/extra/be.po index f682e1478..9759f4f06 100644 --- a/po/extra/be.po +++ b/po/extra/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,6 +26,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bg.po b/po/extra/bg.po index dc40bca72..b687dbacd 100644 --- a/po/extra/bg.po +++ b/po/extra/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -25,6 +25,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bh.po b/po/extra/bh.po index 9d2fc5d83..debeb782b 100644 --- a/po/extra/bh.po +++ b/po/extra/bh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bi.po b/po/extra/bi.po index 61f23c09b..d0fb94ff8 100644 --- a/po/extra/bi.po +++ b/po/extra/bi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bm.po b/po/extra/bm.po index 19e8708d6..91a69ae3d 100644 --- a/po/extra/bm.po +++ b/po/extra/bm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bn.po b/po/extra/bn.po index a8d7416d2..4bb98b3bb 100644 --- a/po/extra/bn.po +++ b/po/extra/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bo.po b/po/extra/bo.po index 0ba281966..d5675edd6 100644 --- a/po/extra/bo.po +++ b/po/extra/bo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/br.po b/po/extra/br.po index f59c8dcde..3525c35c7 100644 --- a/po/extra/br.po +++ b/po/extra/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/bs.po b/po/extra/bs.po index cef00874f..fe814a369 100644 --- a/po/extra/bs.po +++ b/po/extra/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Bosnian \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "Inici de sessió i pantalla de bloqueig" msgid "Unlock or log in to your device" msgstr "Desbloquegeu o entreu al dispositiu" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Característiques noves:" @@ -83,9 +87,6 @@ msgstr "" #~ "S'usa el color d’accentuació seleccionat per a la marca de verificació de " #~ "sessió iniciada." -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Addicció del desplaçament multitàctil" diff --git a/po/extra/ca@valencia.po b/po/extra/ca@valencia.po index f3bc1061b..c64f73f3c 100644 --- a/po/extra/ca@valencia.po +++ b/po/extra/ca@valencia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ce.po b/po/extra/ce.po index 32f0b01e4..191d186a4 100644 --- a/po/extra/ce.po +++ b/po/extra/ce.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ch.po b/po/extra/ch.po index e2a27ba51..e15db6817 100644 --- a/po/extra/ch.po +++ b/po/extra/ch.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ckb.po b/po/extra/ckb.po index e0eab17b6..c4e467faa 100644 --- a/po/extra/ckb.po +++ b/po/extra/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2022-04-15 22:18+0000\n" "Last-Translator: Aga Ismael \n" "Language-Team: Kurdish (Central) \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "Odemkněte nebo se přihlaste do svého počítače" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Nové funkce:" @@ -79,9 +83,6 @@ msgstr "" #~ msgid "Use selected accent color for logged in checkmark" #~ msgstr "Použít zvolenou barvu zvýraznění pro zatržítko u přihlášených" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Přidáno vícedotykové sledování prstu" diff --git a/po/extra/cu.po b/po/extra/cu.po index be2969460..0a6ca7792 100644 --- a/po/extra/cu.po +++ b/po/extra/cu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/cv.po b/po/extra/cv.po index 0b1bf4e6d..1d423d525 100644 --- a/po/extra/cv.po +++ b/po/extra/cv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/cy.po b/po/extra/cy.po index 1393c01bd..36a76cbd7 100644 --- a/po/extra/cy.po +++ b/po/extra/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/da.po b/po/extra/da.po index 6f768a37d..81bce064e 100644 --- a/po/extra/da.po +++ b/po/extra/da.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-08-07 17:16+0000\n" "Last-Translator: anonymous \n" -"Language-Team: Danish \n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "Lås op eller log ind på din enhed" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Incorporated." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -71,9 +75,6 @@ msgstr "Forbedringer:" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Incorporated." - #~ msgid "Fix an issue with media keys" #~ msgstr "Løs et problem med medietaster" diff --git a/po/extra/de.po b/po/extra/de.po index d77914b95..e0a1096a2 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2022-07-26 22:50+0000\n" "Last-Translator: ActualDisaster2447 <1jbe1vkry@mozmail.com>\n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: English (Australia) \n" "Language-Team: English (Canada) \n" "Language-Team: English (United Kingdom) \n" "Language-Team: Esperanto \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "Inicio de sesión y pantalla de bloqueo" msgid "Unlock or log in to your device" msgstr "Desbloquee o inicie sesión en su equipo" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Nuevas características:" @@ -55,7 +59,8 @@ msgstr "Traducciones actualizadas" #: data/greeter.metainfo.xml.in:67 msgid "Prevent a potential issue with dialogs that use portals" -msgstr "Se corrigió un posible problema con cuadro de diálogo que usen portales" +msgstr "" +"Se corrigió un posible problema con cuadro de diálogo que usen portales" #: data/greeter.metainfo.xml.in:68 msgid "Fix potential issues with incorrect keyboard layout being set" @@ -80,9 +85,6 @@ msgstr "" #~ msgid "Hide clock during initial setup" #~ msgstr "Ocultar el reloj durante la configuración inicial" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Fix an issue with media keys" #~ msgstr "Solucionado un problema con las teclas multimedia" diff --git a/po/extra/et.po b/po/extra/et.po index 6aced16c4..a222d92c6 100644 --- a/po/extra/et.po +++ b/po/extra/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -25,6 +25,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/eu.po b/po/extra/eu.po index 4dcadecc8..f8feb52fa 100644 --- a/po/extra/eu.po +++ b/po/extra/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/extra.pot b/po/extra/extra.pot index 5d5f55aed..ca393002d 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: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,6 +25,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/fa.po b/po/extra/fa.po index 153836f49..2bc36cd47 100644 --- a/po/extra/fa.po +++ b/po/extra/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2022-04-14 22:02+0000\n" "Last-Translator: Pikhosh \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "Connexion et écran de verrouillage" msgid "Unlock or log in to your device" msgstr "Déverrouillez ou connectez-vous à votre appareil" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Nouvelles fonctionnalités :" @@ -83,9 +87,6 @@ msgstr "" #~ "Utilisation de la couleur d'accentuation sélectionnée pour la coche " #~ "« connecté »" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Ajout des gestes multi-touch" diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po index 62a1b0e22..454a50aa2 100644 --- a/po/extra/fr_CA.po +++ b/po/extra/fr_CA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -25,6 +25,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/frp.po b/po/extra/frp.po index 337e1252c..5a3b19978 100644 --- a/po/extra/frp.po +++ b/po/extra/frp.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/fy.po b/po/extra/fy.po index c3ee1a6e7..3e3dc5056 100644 --- a/po/extra/fy.po +++ b/po/extra/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ga.po b/po/extra/ga.po index e444d4fd5..f4f4ae89a 100644 --- a/po/extra/ga.po +++ b/po/extra/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -25,6 +25,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/gd.po b/po/extra/gd.po index 725d947d8..49751b66b 100644 --- a/po/extra/gd.po +++ b/po/extra/gd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/gl.po b/po/extra/gl.po index 2bed4dd77..c4312fcfb 100644 --- a/po/extra/gl.po +++ b/po/extra/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-09-19 18:26+0000\n" "Last-Translator: Daniel R. \n" "Language-Team: Galician \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "כניסה ומסך נעילה" msgid "Unlock or log in to your device" msgstr "שחרור נעילה או כניסה למכשיר שלך" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary בע״מ." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "יכולות חדשות:" @@ -77,9 +81,6 @@ msgstr "תוקנה בעיה אקראית שמקבל הפנים לא נטען כ #~ msgid "Use selected accent color for logged in checkmark" #~ msgstr "ייעשה שימוש בצבע המוביל הנבחר לסימון כניסה למערכת" -#~ msgid "elementary, Inc." -#~ msgstr "elementary בע״מ." - #~ msgid "Add multitouch finger tracking" #~ msgstr "נוסף מעקב אחר מספר אצבעות במקביל" diff --git a/po/extra/hi.po b/po/extra/hi.po index abd14e8b9..910bbcb92 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ho.po b/po/extra/ho.po index f27c5bb4f..000737896 100644 --- a/po/extra/ho.po +++ b/po/extra/ho.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/hr.po b/po/extra/hr.po index e584c34ee..97aca7753 100644 --- a/po/extra/hr.po +++ b/po/extra/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -26,6 +26,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ht.po b/po/extra/ht.po index 7168715ca..c6e7fbfda 100644 --- a/po/extra/ht.po +++ b/po/extra/ht.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/hu.po b/po/extra/hu.po index 75c47a468..8b741465d 100644 --- a/po/extra/hu.po +++ b/po/extra/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-05-27 15:13+0000\n" "Last-Translator: TomiOhl \n" "Language-Team: Hungarian \n" @@ -28,6 +28,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Fitur Baru:" @@ -71,6 +75,3 @@ msgstr "Peningkatan:" #: data/greeter.metainfo.xml.in:113 msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" - -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." diff --git a/po/extra/id_ID.po b/po/extra/id_ID.po index 94d3a8cbe..c9d4142bb 100644 --- a/po/extra/id_ID.po +++ b/po/extra/id_ID.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ie.po b/po/extra/ie.po index 465d1477c..477f4ea5a 100644 --- a/po/extra/ie.po +++ b/po/extra/ie.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ig.po b/po/extra/ig.po index 1f6c8d7ed..dc910ebb9 100644 --- a/po/extra/ig.po +++ b/po/extra/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ii.po b/po/extra/ii.po index 69dcbc08d..d9c638355 100644 --- a/po/extra/ii.po +++ b/po/extra/ii.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ik.po b/po/extra/ik.po index 1b5c5e847..6976d9711 100644 --- a/po/extra/ik.po +++ b/po/extra/ik.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/io.po b/po/extra/io.po index fafe6f39d..170fa07ce 100644 --- a/po/extra/io.po +++ b/po/extra/io.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/is.po b/po/extra/is.po index ea70b8eec..c50ced590 100644 --- a/po/extra/is.po +++ b/po/extra/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/it.po b/po/extra/it.po index 22305331d..e6c7f4100 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-08-07 17:16+0000\n" "Last-Translator: anonymous \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "Sblocca o accedi al tuo dispositivo" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -71,9 +75,6 @@ msgstr "Miglioramenti:" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Fix an issue with media keys" #~ msgstr "Corretto un problema con i tasti multimediali" diff --git a/po/extra/iu.po b/po/extra/iu.po index 7ced8b4de..72b5e249d 100644 --- a/po/extra/iu.po +++ b/po/extra/iu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ja.po b/po/extra/ja.po index 9c0ad91f9..b5b0a264c 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -7,17 +7,17 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" -"PO-Revision-Date: 2024-05-23 23:13+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" +"PO-Revision-Date: 2024-09-01 08:16+0000\n" "Last-Translator: Ryo Nakano \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.5\n" +"X-Generator: Weblate 5.6.2\n" #: data/greeter.metainfo.xml.in:9 msgid "Login & Lock Screen" @@ -27,6 +27,10 @@ msgstr "ログイン・ロック画面" msgid "Unlock or log in to your device" msgstr "お使いのデバイスのロックを解除したりログインしたりします" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "新機能:" @@ -57,7 +61,7 @@ msgstr "ポータルを使用するダイアログに関連する潜在的なバ #: data/greeter.metainfo.xml.in:68 msgid "Fix potential issues with incorrect keyboard layout being set" -msgstr "不適切なキーボードレイアウトが設定されることがある不具合を修正" +msgstr "間違ったキーボードレイアウトが設定されることがある不具合を修正" #: data/greeter.metainfo.xml.in:100 msgid "Provide panel background color interface" @@ -79,9 +83,6 @@ msgstr "起動時に Greeter が適切に読み込まれないことがある不 #~ "ログイン中かどうかを表示するチェックマークに、ユーザーが選択したアクセント" #~ "カラーを使用するように修正" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "マルチタッチを検知する機能を追加" diff --git a/po/extra/jv.po b/po/extra/jv.po index a454f80e2..311a22a3a 100644 --- a/po/extra/jv.po +++ b/po/extra/jv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ka.po b/po/extra/ka.po index 56e4c4bde..ffb8e3fab 100644 --- a/po/extra/ka.po +++ b/po/extra/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-10-23 05:10+0000\n" "Last-Translator: NorwayFun \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" "Language-Team: Lithuanian \n" "Language-Team: Malayalam \n" -"Language-Team: Marathi \n" +"Language-Team: Marathi \n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "डिव्हाइस अनलॉक करा किंवा आपल्या डिव्हाइसवर लॉग इन करा" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "एलिमेंटरी,Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -71,9 +75,6 @@ msgstr "सुधारणा:" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#~ msgid "elementary, Inc." -#~ msgstr "एलिमेंटरी,Inc." - #~ msgid "Fix an issue with media keys" #~ msgstr "मीडिया की सह अडचणीचे निराकरण करा" diff --git a/po/extra/ms.po b/po/extra/ms.po index d36f102bc..d6f44933b 100644 --- a/po/extra/ms.po +++ b/po/extra/ms.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/mt.po b/po/extra/mt.po index 291495b59..5bae4d9ba 100644 --- a/po/extra/mt.po +++ b/po/extra/mt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/my.po b/po/extra/my.po index 3f505accb..a44568ef5 100644 --- a/po/extra/my.po +++ b/po/extra/my.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/na.po b/po/extra/na.po index ca74b5f98..e428cab31 100644 --- a/po/extra/na.po +++ b/po/extra/na.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/nb.po b/po/extra/nb.po index ddca0326f..e5cd3af6f 100644 --- a/po/extra/nb.po +++ b/po/extra/nb.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" -"PO-Revision-Date: 2023-07-08 01:09+0000\n" -"Last-Translator: Allan Nordhøy \n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" +"PO-Revision-Date: 2024-09-14 21:16+0000\n" +"Last-Translator: anonymous \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\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.17\n" +"X-Generator: Weblate 5.6.2\n" #: data/greeter.metainfo.xml.in:9 msgid "Login & Lock Screen" @@ -27,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "Lås opp eller logg inn på enheten din" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -71,10 +75,6 @@ msgstr "Forbedringer:" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#, fuzzy -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Fix an issue with media keys" #~ msgstr "Fiks et problem med mediataster" diff --git a/po/extra/nd.po b/po/extra/nd.po index b06d962a4..be3c44bdf 100644 --- a/po/extra/nd.po +++ b/po/extra/nd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ne.po b/po/extra/ne.po index 16daa77cb..51a0b1828 100644 --- a/po/extra/ne.po +++ b/po/extra/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ng.po b/po/extra/ng.po index b12d546ca..5ad5aadd9 100644 --- a/po/extra/ng.po +++ b/po/extra/ng.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/nl.po b/po/extra/nl.po index 09a19cba9..860d4adb3 100644 --- a/po/extra/nl.po +++ b/po/extra/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" -"PO-Revision-Date: 2024-08-17 17:19+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" +"PO-Revision-Date: 2024-09-22 01:32+0000\n" "Last-Translator: DutchVipperloid \n" "Language-Team: Dutch \n" @@ -27,17 +27,21 @@ msgstr "Inloggen en scherm vergrendelen" msgid "Unlock or log in to your device" msgstr "Ontgrendel uw apparaat of log in" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Nieuwe functies:" #: data/greeter.metainfo.xml.in:44 msgid "Add blurred wallpaper as background" -msgstr "" +msgstr "Voeg vervaagde afbeelding toe als achtergrond" #: data/greeter.metainfo.xml.in:45 msgid "Make Date and Time larger and bolder with softer shadows" -msgstr "" +msgstr "Maak datum en tijd groter en meer uitgesproken met zachtere schaduwen" #: data/greeter.metainfo.xml.in:47 data/greeter.metainfo.xml.in:65 #: data/greeter.metainfo.xml.in:86 data/greeter.metainfo.xml.in:102 @@ -53,11 +57,13 @@ msgstr "Bijgewerkte vertalingen" #: data/greeter.metainfo.xml.in:67 msgid "Prevent a potential issue with dialogs that use portals" -msgstr "" +msgstr "Voorkom een potentieel probleem met dialogen die portalen gebruiken" #: data/greeter.metainfo.xml.in:68 msgid "Fix potential issues with incorrect keyboard layout being set" msgstr "" +"Voorkom potentiële problemen wanneer een incorrecte toetsenbordindeling " +"wordt ingesteld" #: data/greeter.metainfo.xml.in:100 msgid "Provide panel background color interface" @@ -81,9 +87,6 @@ msgstr "" #~ "Gebruik de geselecteerde accentkleur voor het vinkje dat aangeeft dat de " #~ "gebruiker is ingelogd" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Voeg multitouch vinger tracking toe" diff --git a/po/extra/nn.po b/po/extra/nn.po index af919da2e..d7133f023 100644 --- a/po/extra/nn.po +++ b/po/extra/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-02-07 16:25+0000\n" "Last-Translator: Martin Myrvold \n" "Language-Team: Norwegian Nynorsk \n" -"Language-Team: Occitan \n" +"Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "Desverrolhar o vos connectar a l’aparelh" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -71,9 +75,6 @@ msgstr "Melhoraments :" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Apondon dels gèsts multi-tòca" diff --git a/po/extra/oj.po b/po/extra/oj.po index 351408bf4..14531a71a 100644 --- a/po/extra/oj.po +++ b/po/extra/oj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/om.po b/po/extra/om.po index fbadf6496..0d65810c5 100644 --- a/po/extra/om.po +++ b/po/extra/om.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/or.po b/po/extra/or.po index 78726e4ec..bc36950c3 100644 --- a/po/extra/or.po +++ b/po/extra/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/os.po b/po/extra/os.po index 2e0bbced7..7c1b137bf 100644 --- a/po/extra/os.po +++ b/po/extra/os.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/pa.po b/po/extra/pa.po index e072b7a05..5dac6d2f8 100644 --- a/po/extra/pa.po +++ b/po/extra/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/pap.po b/po/extra/pap.po index ac506536c..f1b5fd30d 100644 --- a/po/extra/pap.po +++ b/po/extra/pap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/pi.po b/po/extra/pi.po index 7e6cd7b67..4fcbcf709 100644 --- a/po/extra/pi.po +++ b/po/extra/pi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/pl.po b/po/extra/pl.po index 5ce9667bf..aebf82f21 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-05-25 08:13+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" @@ -28,6 +28,10 @@ msgstr "Logowanie & Ekran blokady" msgid "Unlock or log in to your device" msgstr "Odblokuj lub zaloguj się do swojego urządzenia" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Nowe funkcje:" @@ -83,9 +87,6 @@ msgstr "" #~ msgid "Use selected accent color for logged in checkmark" #~ msgstr "Użyto wybranego koloru akcentowego dla znacznika zalogowania" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Dodano śledzenie wielu palców" diff --git a/po/extra/ps.po b/po/extra/ps.po index a9e5befd0..ab77a0dbb 100644 --- a/po/extra/ps.po +++ b/po/extra/ps.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/pt.po b/po/extra/pt.po index 5a9846ea6..e436df458 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2022-06-11 23:34+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,10 @@ msgstr "Экран входа и блокировки" msgid "Unlock or log in to your device" msgstr "Разблокируйте устройство или авторизуйтесь" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Новые возможности:" @@ -82,9 +86,6 @@ msgstr "" #~ msgid "Use selected accent color for logged in checkmark" #~ msgstr "Галочки окрашиваются в выбранный цветовой акцент" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Add multitouch finger tracking" #~ msgstr "Реализована поддержка отслеживания одновременных касаний" diff --git a/po/extra/rue.po b/po/extra/rue.po index a985275f0..c5488f3d0 100644 --- a/po/extra/rue.po +++ b/po/extra/rue.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/rw.po b/po/extra/rw.po index acf5bc043..7783093ab 100644 --- a/po/extra/rw.po +++ b/po/extra/rw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/sa.po b/po/extra/sa.po index af4e34109..ce2c09b3a 100644 --- a/po/extra/sa.po +++ b/po/extra/sa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/sc.po b/po/extra/sc.po index 88cf0121a..be8f8b0a9 100644 --- a/po/extra/sc.po +++ b/po/extra/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/sd.po b/po/extra/sd.po index 2fb960742..1bf5257e8 100644 --- a/po/extra/sd.po +++ b/po/extra/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/se.po b/po/extra/se.po index 337486788..08b03eae5 100644 --- a/po/extra/se.po +++ b/po/extra/se.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/sg.po b/po/extra/sg.po index 983a5715d..1c8f72470 100644 --- a/po/extra/sg.po +++ b/po/extra/sg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/si.po b/po/extra/si.po index 4ce461423..9ee8ce75e 100644 --- a/po/extra/si.po +++ b/po/extra/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/sk.po b/po/extra/sk.po index 656451b7d..b8632b413 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2022-05-07 15:04+0000\n" "Last-Translator: JohnDumpling \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" -"Language-Team: Serbian \n" +"Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "Откључава или се пријављује на ваш уређај" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" @@ -72,9 +76,6 @@ msgstr "Побољшања:" msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." - #~ msgid "Fix an issue with media keys" #~ msgstr "Поправља проблем медијским тастерима" diff --git a/po/extra/sr@latin.po b/po/extra/sr@latin.po index e792ea192..e5770329f 100644 --- a/po/extra/sr@latin.po +++ b/po/extra/sr@latin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ss.po b/po/extra/ss.po index 8c53f7975..f08efde5b 100644 --- a/po/extra/ss.po +++ b/po/extra/ss.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/st.po b/po/extra/st.po index 3f601e6a1..87d7f1357 100644 --- a/po/extra/st.po +++ b/po/extra/st.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/su.po b/po/extra/su.po index 3607b8209..17011d428 100644 --- a/po/extra/su.po +++ b/po/extra/su.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/sv.po b/po/extra/sv.po index 95065c29b..f739592ba 100644 --- a/po/extra/sv.po +++ b/po/extra/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-07-01 20:28+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Swedish \n" "Language-Team: Silesian \n" @@ -22,6 +22,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ta.po b/po/extra/ta.po index 544c14ab9..eff61919a 100644 --- a/po/extra/ta.po +++ b/po/extra/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/te.po b/po/extra/te.po index 442304c9d..edff8e14d 100644 --- a/po/extra/te.po +++ b/po/extra/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tg.po b/po/extra/tg.po index 1e0c8465a..0be96cd4f 100644 --- a/po/extra/tg.po +++ b/po/extra/tg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/th.po b/po/extra/th.po index f3ea0a5c8..2354d4b86 100644 --- a/po/extra/th.po +++ b/po/extra/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ti.po b/po/extra/ti.po index 9301cd85b..1417e7584 100644 --- a/po/extra/ti.po +++ b/po/extra/ti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tk.po b/po/extra/tk.po index 4f6e8e9d1..efdffe9f6 100644 --- a/po/extra/tk.po +++ b/po/extra/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tl.po b/po/extra/tl.po index 1c86be056..34fe213a7 100644 --- a/po/extra/tl.po +++ b/po/extra/tl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tn.po b/po/extra/tn.po index 8aed5d216..11ccfbca8 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: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/to.po b/po/extra/to.po index fa46e82db..9b2937a0e 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: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tr.po b/po/extra/tr.po index 1d9378754..72919ea78 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -7,17 +7,17 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" -"PO-Revision-Date: 2022-05-18 22:50+0000\n" -"Last-Translator: Özgür Baskin \n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" +"PO-Revision-Date: 2024-09-21 10:16+0000\n" +"Last-Translator: Sinan Decron \n" +"Language-Team: Turkish \n" "Language: tr\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-Generator: Weblate 5.6.2\n" #: data/greeter.metainfo.xml.in:9 msgid "Login & Lock Screen" @@ -27,17 +27,21 @@ msgstr "Oturum Açma ve Kilit Ekranı" msgid "Unlock or log in to your device" msgstr "Cihazınızın kilidini veya oturumunuzu açın" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "Yeni Özellikler:" #: data/greeter.metainfo.xml.in:44 msgid "Add blurred wallpaper as background" -msgstr "" +msgstr "Arkaplan olarak bulanık duvar kağıdı ekle" #: data/greeter.metainfo.xml.in:45 msgid "Make Date and Time larger and bolder with softer shadows" -msgstr "" +msgstr "Tarih ve Saati daha yumuşak gölgelerle daha büyük ve daha kalın yap" #: data/greeter.metainfo.xml.in:47 data/greeter.metainfo.xml.in:65 #: data/greeter.metainfo.xml.in:86 data/greeter.metainfo.xml.in:102 @@ -53,15 +57,15 @@ msgstr "Çeviriler güncellendi" #: data/greeter.metainfo.xml.in:67 msgid "Prevent a potential issue with dialogs that use portals" -msgstr "" +msgstr "Portalları kullanan iletişim kutularında olası bir sorunu önle" #: data/greeter.metainfo.xml.in:68 msgid "Fix potential issues with incorrect keyboard layout being set" -msgstr "" +msgstr "Yanlış klavye düzeninin ayarlanmasıyla ilgili olası sorunları düzelt" #: data/greeter.metainfo.xml.in:100 msgid "Provide panel background color interface" -msgstr "" +msgstr "Panel arka plan rengi arayüzü sağla" #: data/greeter.metainfo.xml.in:111 msgid "Improvements:" @@ -70,9 +74,8 @@ msgstr "İyileştirmeler:" #: data/greeter.metainfo.xml.in:113 msgid "Fix a random issue where Greeter does not load correctly on boot" msgstr "" - -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." +"Greeter'ın önyükleme sırasında düzgün yüklenmemesine neden olan rastgele bir " +"sorunu düzelt" #~ msgid "Fix an issue with media keys" #~ msgstr "Ortam anahtarlarıyla ilgili bir sorun giderildi" diff --git a/po/extra/ts.po b/po/extra/ts.po index 02d7c8e31..50792d3b4 100644 --- a/po/extra/ts.po +++ b/po/extra/ts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tt.po b/po/extra/tt.po index 1539f840b..8e757b455 100644 --- a/po/extra/tt.po +++ b/po/extra/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/tw.po b/po/extra/tw.po index 9ad1c250d..08c08f487 100644 --- a/po/extra/tw.po +++ b/po/extra/tw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ty.po b/po/extra/ty.po index 31ce83b11..d3da696d8 100644 --- a/po/extra/ty.po +++ b/po/extra/ty.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ug.po b/po/extra/ug.po index 081ef08d8..7646f2007 100644 --- a/po/extra/ug.po +++ b/po/extra/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/uk.po b/po/extra/uk.po index 586d3fb1f..6043c8d77 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-05-27 15:13+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian \n" +"Language-Team: Uzbek \n" "Language: uz\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\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 5.6.2\n" #: data/greeter.metainfo.xml.in:9 msgid "Login & Lock Screen" @@ -24,6 +27,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/ve.po b/po/extra/ve.po index c7ced2231..2db4ff78d 100644 --- a/po/extra/ve.po +++ b/po/extra/ve.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/vi.po b/po/extra/vi.po index fa6f28855..83c9a2cd5 100644 --- a/po/extra/vi.po +++ b/po/extra/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-06-24 15:03-0700\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -25,6 +25,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/vo.po b/po/extra/vo.po index 45d7228b6..50e87a271 100644 --- a/po/extra/vo.po +++ b/po/extra/vo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/wa.po b/po/extra/wa.po index 7f5239b17..3bf6c3afd 100644 --- a/po/extra/wa.po +++ b/po/extra/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/wo.po b/po/extra/wo.po index 76265006e..f53aa92b3 100644 --- a/po/extra/wo.po +++ b/po/extra/wo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/xh.po b/po/extra/xh.po index 603f9ed48..51f281161 100644 --- a/po/extra/xh.po +++ b/po/extra/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/yi.po b/po/extra/yi.po index e70654a03..9fdfd678d 100644 --- a/po/extra/yi.po +++ b/po/extra/yi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/yo.po b/po/extra/yo.po index 81d7ad38b..445248766 100644 --- a/po/extra/yo.po +++ b/po/extra/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/za.po b/po/extra/za.po index 8deb5baa8..aee1a8e13 100644 --- a/po/extra/za.po +++ b/po/extra/za.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/zh.po b/po/extra/zh.po index 5e7cfd757..28223c4ea 100644 --- a/po/extra/zh.po +++ b/po/extra/zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/extra/zh_CN.po b/po/extra/zh_CN.po index f536ae279..241eb5b84 100644 --- a/po/extra/zh_CN.po +++ b/po/extra/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2021-11-01 07:03+0000\n" "Last-Translator: Yuchen Deng \n" "Language-Team: Chinese (Simplified) \n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" +"PO-Revision-Date: 2024-09-19 10:09+0000\n" +"Last-Translator: Kisaragi Hiu \n" "Language-Team: Chinese (Traditional) \n" "Language: zh_TW\n" @@ -17,62 +17,63 @@ 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 5.6.2\n" #: data/greeter.metainfo.xml.in:9 msgid "Login & Lock Screen" -msgstr "" +msgstr "登入與鎖定畫面" #: data/greeter.metainfo.xml.in:10 msgid "Unlock or log in to your device" msgstr "解除鎖定或登入您的裝置" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "elementary, Inc." + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" -msgstr "" +msgstr "新功能:" #: data/greeter.metainfo.xml.in:44 msgid "Add blurred wallpaper as background" -msgstr "" +msgstr "新增將模糊桌布設為背景的功能" #: data/greeter.metainfo.xml.in:45 msgid "Make Date and Time larger and bolder with softer shadows" -msgstr "" +msgstr "讓日期與時間更大並使用較柔和的陰影" #: data/greeter.metainfo.xml.in:47 data/greeter.metainfo.xml.in:65 #: data/greeter.metainfo.xml.in:86 data/greeter.metainfo.xml.in:102 #: data/greeter.metainfo.xml.in:115 msgid "Minor updates:" -msgstr "" +msgstr "小型更新:" #: data/greeter.metainfo.xml.in:49 data/greeter.metainfo.xml.in:69 #: data/greeter.metainfo.xml.in:88 data/greeter.metainfo.xml.in:104 #: data/greeter.metainfo.xml.in:117 msgid "Updated translations" -msgstr "" +msgstr "更新翻譯" #: data/greeter.metainfo.xml.in:67 msgid "Prevent a potential issue with dialogs that use portals" -msgstr "" +msgstr "防止使用桌面入口的對話框可能會遇到的某個問題" #: data/greeter.metainfo.xml.in:68 msgid "Fix potential issues with incorrect keyboard layout being set" -msgstr "" +msgstr "修正可能設定錯誤的鍵盤配置的問題" #: data/greeter.metainfo.xml.in:100 msgid "Provide panel background color interface" -msgstr "" +msgstr "提供面板背景色彩介面" #: data/greeter.metainfo.xml.in:111 msgid "Improvements:" -msgstr "" +msgstr "改善項目:" #: data/greeter.metainfo.xml.in:113 msgid "Fix a random issue where Greeter does not load correctly on boot" -msgstr "" - -#~ msgid "elementary, Inc." -#~ msgstr "elementary, Inc." +msgstr "修正 greeter 在開機時會隨機無法正確載入的問題" #~ msgid "Greeter" #~ msgstr "歡迎程式" diff --git a/po/extra/zu.po b/po/extra/zu.po index a89aa8b0f..87c2e0e13 100644 --- a/po/extra/zu.po +++ b/po/extra/zu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unlock or log in to your device" msgstr "" +#: data/greeter.metainfo.xml.in:34 +msgid "elementary, Inc." +msgstr "" + #: data/greeter.metainfo.xml.in:42 data/greeter.metainfo.xml.in:98 msgid "New Features:" msgstr "" diff --git a/po/fa.po b/po/fa.po index 68262509e..87925ad36 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2022-04-14 22:02+0000\n" "Last-Translator: Pikhosh \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" "Language-Team: Filipino \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/fj.po b/po/fj.po index 548892206..de2e5fcfc 100644 --- a/po/fj.po +++ b/po/fj.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/fo.po b/po/fo.po index 946fe54ac..1bf3c0934 100644 --- a/po/fo.po +++ b/po/fo.po @@ -1,27 +1,27 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/fr.po b/po/fr.po index 05750a3fc..9fd4ca4b4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-03-15 09:25+0000\n" "Last-Translator: Nathan \n" "Language-Team: French \n" "Language-Team: French (Canada) 1;\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/fy.po b/po/fy.po index 548892206..de2e5fcfc 100644 --- a/po/fy.po +++ b/po/fy.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ga.po b/po/ga.po index e664e8ad0..1a7210f91 100644 --- a/po/ga.po +++ b/po/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2017-02-25 05:03+0000\n" "Last-Translator: Aoibhe Ní Ghnímh \n" "Language-Team: Irish \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/gd.po b/po/gd.po index 548892206..de2e5fcfc 100644 --- a/po/gd.po +++ b/po/gd.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/gl.po b/po/gl.po index 7820cf67a..f18fc55f4 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-09-18 16:22+0000\n" "Last-Translator: Daniel R. \n" "Language-Team: Galician \n" "Language-Team: Gujarati \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/gv.po b/po/gv.po index 548892206..de2e5fcfc 100644 --- a/po/gv.po +++ b/po/gv.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ha.po b/po/ha.po index 548892206..de2e5fcfc 100644 --- a/po/ha.po +++ b/po/ha.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/he.po b/po/he.po index f5cd0d959..aabd715fa 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-03-07 13:25+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" "Language-Team: Hindi \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Interlingua \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/id.po b/po/id.po index a7b05dd91..61cdb312b 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-05-20 18:06+0000\n" "Last-Translator: Muktazam Hasbi Ashidiqi \n" "Language-Team: Indonesian \n" "Language-Team: Occidental \n" "Language-Team: LANGUAGE \n" @@ -18,22 +18,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/io.po b/po/io.po index 548892206..de2e5fcfc 100644 --- a/po/io.po +++ b/po/io.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/is.po b/po/is.po index 548892206..de2e5fcfc 100644 --- a/po/is.po +++ b/po/is.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/it.po b/po/it.po index 51e304852..92973a866 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2020-10-23 18:15+0000\n" "Last-Translator: Fabio Zaramella \n" "Language-Team: Italian \n" "Language-Team: Japanese \n" "Language-Team: Georgian \n" "Language-Team: Korean \n" "Language-Team: Kurdish \n" "Language-Team: LANGUAGE \n" @@ -13,22 +13,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/la.po b/po/la.po index 548892206..de2e5fcfc 100644 --- a/po/la.po +++ b/po/la.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/lb.po b/po/lb.po index 18583a427..775b70f34 100644 --- a/po/lb.po +++ b/po/lb.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Luxembourgish \n" "Language-Team: LANGUAGE \n" @@ -13,22 +13,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/lt.po b/po/lt.po index 016949bc0..13e1faebb 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-07-01 20:28+0000\n" "Last-Translator: Moo \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Malayalam \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/mn.po b/po/mn.po index e463487f7..785ee555d 100644 --- a/po/mn.po +++ b/po/mn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Mongolian \n" "Language-Team: Moldovan \n" "Language-Team: Marathi \n" "Language-Team: Malay \n" "Language-Team: Burmese \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/na.po b/po/na.po index 548892206..de2e5fcfc 100644 --- a/po/na.po +++ b/po/na.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/nb.po b/po/nb.po index 1634058ea..472710ade 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-06-17 03:16+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" "Language-Team: Norwegian Nynorsk \n" "Language-Team: Occitan 1;\n" "X-Generator: Weblate 4.14.2\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, fuzzy, c-format #| msgid "Changes will automatically revert after 30 seconds." msgid "Changes will automatically revert after %i second." @@ -21,15 +21,15 @@ msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "Las modificacions seràn automaticament anullada aprèp 30 segondas." msgstr[1] "Las modificacions seràn automaticament anullada aprèp 30 segondas." -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "Servar los paramètres novèls d’afichatge ?" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "Servar los paramètres" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "Utilizar los paramètres precedents" diff --git a/po/oj.po b/po/oj.po index 548892206..de2e5fcfc 100644 --- a/po/oj.po +++ b/po/oj.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/om.po b/po/om.po index 548892206..de2e5fcfc 100644 --- a/po/om.po +++ b/po/om.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/or.po b/po/or.po index 548892206..de2e5fcfc 100644 --- a/po/or.po +++ b/po/or.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/os.po b/po/os.po index 548892206..de2e5fcfc 100644 --- a/po/os.po +++ b/po/os.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/pa.po b/po/pa.po index e23ae6f23..ddea4d210 100644 --- a/po/pa.po +++ b/po/pa.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2021-08-12 13:02+0000\n" "Last-Translator: elSolus \n" "Language-Team: Punjabi 1;\n" "X-Generator: Weblate 4.4.2\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/pap.po b/po/pap.po index 1c59643dd..ac7d334d5 100644 --- a/po/pap.po +++ b/po/pap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: io.elementary.greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -17,22 +17,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/pi.po b/po/pi.po index 548892206..de2e5fcfc 100644 --- a/po/pi.po +++ b/po/pi.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/pl.po b/po/pl.po index 78f66b11a..f0821a3bf 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2023-03-07 13:25+0000\n" "Last-Translator: Marcin Serwin \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian \n" "Language-Team: Russian \n" "Language-Team: Rusyn \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/rw.po b/po/rw.po index 548892206..de2e5fcfc 100644 --- a/po/rw.po +++ b/po/rw.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sa.po b/po/sa.po index 548892206..de2e5fcfc 100644 --- a/po/sa.po +++ b/po/sa.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sc.po b/po/sc.po index 548892206..de2e5fcfc 100644 --- a/po/sc.po +++ b/po/sc.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sd.po b/po/sd.po index 548892206..de2e5fcfc 100644 --- a/po/sd.po +++ b/po/sd.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/se.po b/po/se.po index 548892206..de2e5fcfc 100644 --- a/po/se.po +++ b/po/se.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sg.po b/po/sg.po index 548892206..de2e5fcfc 100644 --- a/po/sg.po +++ b/po/sg.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/si.po b/po/si.po index c6f5fbc05..e09140688 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: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Sinhala \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" "Language-Team: LANGUAGE \n" @@ -13,22 +13,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sn.po b/po/sn.po index 548892206..de2e5fcfc 100644 --- a/po/sn.po +++ b/po/sn.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/so.po b/po/so.po index 548892206..de2e5fcfc 100644 --- a/po/so.po +++ b/po/so.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sq.po b/po/sq.po index 33d1ab750..a7b2f88e0 100644 --- a/po/sq.po +++ b/po/sq.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Serbian Latin \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ss.po b/po/ss.po index 548892206..de2e5fcfc 100644 --- a/po/ss.po +++ b/po/ss.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/st.po b/po/st.po index 548892206..de2e5fcfc 100644 --- a/po/st.po +++ b/po/st.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/su.po b/po/su.po index 548892206..de2e5fcfc 100644 --- a/po/su.po +++ b/po/su.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/sv.po b/po/sv.po index 937dd853a..ad1a5a26d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2024-08-07 17:16+0000\n" "Last-Translator: anonymous \n" "Language-Team: Swedish \n" "Language-Team: LANGUAGE \n" @@ -13,22 +13,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/szl.po b/po/szl.po index 33507bbbe..9d91b3b87 100644 --- a/po/szl.po +++ b/po/szl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2020-02-25 22:09+0000\n" "Last-Translator: gkkulik \n" "Language-Team: Silesian =20) ? 1 : 2;\n" "X-Generator: Weblate 3.9.1\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." @@ -22,15 +22,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/ta.po b/po/ta.po index 5601f9973..ffb26b5d9 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2015-08-25 16:09+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/te.po b/po/te.po index 5432a8eb9..64fedd75a 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: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2017-02-01 18:58+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,22 +13,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/tg.po b/po/tg.po index 548892206..de2e5fcfc 100644 --- a/po/tg.po +++ b/po/tg.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/th.po b/po/th.po index 711ed897f..eed08bfaf 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "PO-Revision-Date: 2019-12-15 23:07+0000\n" "Last-Translator: Daniel Foré \n" "Language-Team: Thai \n" "Language-Team: Tagalog \n" "Language-Team: Turkish \n" "Language-Team: Uyghur \n" "Language-Team: Ukrainian \n" "Language-Team: Urdu \n" "Language-Team: Uzbek \n" "Language-Team: Vietnamese \n" "Language-Team: Chinese \n" "Language-Team: Chinese (Simplified) \n" "Language-Team: Chinese (Hong Kong) \n" @@ -18,22 +18,22 @@ msgstr "" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" "X-Generator: Launchpad (build 18330)\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 1ce9b6eac..d3e268a5a 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: pantheon-greeter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" -"PO-Revision-Date: 2019-05-22 09:03+0000\n" -"Last-Translator: P.-H. Lin \n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" +"PO-Revision-Date: 2024-09-02 22:33+0000\n" +"Last-Translator: Kisaragi Hiu \n" "Language-Team: Chinese (Traditional) \n" "Language: zh_TW\n" @@ -17,26 +17,26 @@ 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 5.6.2\n" "X-Launchpad-Export-Date: 2017-03-09 05:44+0000\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." -msgstr[0] "" +msgstr[0] "變更將會在 %i 秒後自動復原。" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" -msgstr "" +msgstr "要保留新的顯示器設定嗎?" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" -msgstr "" +msgstr "保留設定" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" -msgstr "" +msgstr "使用先前的設定" #: src/MainWindow.vala:67 msgid "Log in as Guest" @@ -47,13 +47,12 @@ msgid "Manual Login…" msgstr "手動登入…" #: src/MainWindow.vala:403 -#, fuzzy msgid "Unable to Log In" -msgstr "無法啟動初始設定程式" +msgstr "無法登入" #: src/MainWindow.vala:404 msgid "Starting the session has failed." -msgstr "" +msgstr "啟動工作階段失敗了。" #: src/MainWindow.vala:481 msgid "Unable to Launch Initial Setup" @@ -77,7 +76,7 @@ msgstr "使用者名稱" #: src/Cards/ManualCard.vala:33 msgid "Try username" -msgstr "" +msgstr "嘗試使用者名稱" #: src/Cards/UserCard.vala:107 src/Widgets/PasswordEntry.vala:27 msgid "Log In" @@ -89,7 +88,7 @@ msgstr "帳號已停用" #: src/Cards/UserCard.vala:197 msgid "Session cannot be changed while user is logged in" -msgstr "" +msgstr "使用者已登入時無法變更工作階段" #: src/Widgets/CapsLockRevealer.vala:70 msgid "Caps Lock & Num Lock are on" diff --git a/po/zu.po b/po/zu.po index 548892206..de2e5fcfc 100644 --- a/po/zu.po +++ b/po/zu.po @@ -1,26 +1,26 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 16:41+0000\n" +"POT-Creation-Date: 2024-09-13 20:19+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -#: compositor/WindowManager.vala:461 +#: compositor/WindowManager.vala:492 #, c-format msgid "Changes will automatically revert after %i second." msgid_plural "Changes will automatically revert after %i seconds." msgstr[0] "" msgstr[1] "" -#: compositor/WindowManager.vala:468 +#: compositor/WindowManager.vala:499 msgid "Keep new display settings?" msgstr "" -#: compositor/WindowManager.vala:472 +#: compositor/WindowManager.vala:503 msgid "Keep Settings" msgstr "" -#: compositor/WindowManager.vala:473 +#: compositor/WindowManager.vala:504 msgid "Use Previous Settings" msgstr "" diff --git a/protocol/meson.build b/protocol/meson.build new file mode 100644 index 000000000..771af1a0f --- /dev/null +++ b/protocol/meson.build @@ -0,0 +1,32 @@ +dep_scanner = dependency('wayland-scanner', native: true) +prog_scanner = find_program(dep_scanner.get_variable(pkgconfig: 'wayland_scanner')) + +protocol_file = files('pantheon-desktop-shell-v1.xml') + +pantheon_desktop_shell_sources = [] +pantheon_desktop_shell_sources += custom_target( + 'pantheon-desktop-shell-server-protocol.h', + command: [ prog_scanner, 'server-header', '@INPUT@', '@OUTPUT@' ], + input: protocol_file, + output: 'pantheon-desktop-shell-server-protocol.h', +) + +output_type = 'private-code' +if dep_scanner.version().version_compare('< 1.14.91') + output_type = 'code' +endif +pantheon_desktop_shell_sources += custom_target( + 'pantheon-desktop-shell-protocol.c', + command: [ prog_scanner, output_type, '@INPUT@', '@OUTPUT@' ], + input: protocol_file, + output: 'pantheon-desktop-shell-protocol.c', +) + +pantheon_desktop_shell_dep = declare_dependency( + dependencies: [ + vala.find_library('pantheon-desktop-shell', dirs: meson.current_source_dir()), + dependency('wayland-server'), + ], + include_directories: include_directories('.'), + sources: pantheon_desktop_shell_sources +) diff --git a/protocol/pantheon-desktop-shell-v1.xml b/protocol/pantheon-desktop-shell-v1.xml new file mode 100644 index 000000000..63d9d5982 --- /dev/null +++ b/protocol/pantheon-desktop-shell-v1.xml @@ -0,0 +1,131 @@ + + + + + SPDX-License-Identifier: LGPL-2.1-or-later + ]]> + + + + This interface is used by the Pantheon Wayland shell to communicate with + the compositor. + + + + + Create a panel surface from an existing surface. + + + + + + + + Create a desktop widget surface from an existing surface. + + + + + + + + Create a desktop-specific surface from an existing surface. + + + + + + + + + + + + The anchor is a placement hint to the compositor. + + + + + + + + + + How the shell should handle the window. + + + + + + + + + + + Tell the shell which side of the screen the panel is + located. This is so that new windows do not overlap the panel + and maximized windows maximize properly. + + + + + + + + Request keyboard focus, taking it away from any other window. + Keyboard focus must always be manually be requested and is + - in contrast to normal windows - never automatically granted + by the compositor. + + + + + + The given size is only used for exclusive zones and + collision tracking for auto hide. By default and if set + to -1 the size of the surface is used. + + + + + + + + + Tell the shell when to hide the panel. + + + + + + + + + + + + + + + Tell the shell to keep the surface above on all workspaces + + + + + + Request to keep the surface centered. This will cause keyboard focus + to not be granted automatically but having to be requested via focus. + + + + + + Request keyboard focus, taking it away from any other window. + Keyboard focus must always be manually be requested and is + - in contrast to normal windows - never automatically granted + by the compositor. + + + + diff --git a/protocol/pantheon-desktop-shell.deps b/protocol/pantheon-desktop-shell.deps new file mode 100644 index 000000000..62acb1e0a --- /dev/null +++ b/protocol/pantheon-desktop-shell.deps @@ -0,0 +1 @@ +wayland-server diff --git a/protocol/pantheon-desktop-shell.vapi b/protocol/pantheon-desktop-shell.vapi new file mode 100644 index 000000000..4c57de974 --- /dev/null +++ b/protocol/pantheon-desktop-shell.vapi @@ -0,0 +1,83 @@ +/* + * Copyright 2023 elementary, Inc. + * Copyright 2023 Corentin Noël + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +namespace Pantheon.Desktop { + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "struct io_elementary_pantheon_shell_v1_interface")] + public struct ShellInterface { + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "io_elementary_pantheon_shell_v1_interface")] + public static Wl.Interface iface; + public Pantheon.Desktop.GetPanel get_panel; + public Pantheon.Desktop.GetWidget get_widget; + public Pantheon.Desktop.GetExtendedBehavior get_extended_behavior; + + } + + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "enum io_elementary_pantheon_panel_v1_anchor", cprefix="IO_ELEMENTARY_PANTHEON_PANEL_V1_ANCHOR_", has_type_id = false)] + public enum Anchor { + TOP, + BOTTOM, + LEFT, + RIGHT, + } + + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "enum io_elementary_pantheon_panel_v1_hide_mode", cprefix="IO_ELEMENTARY_PANTHEON_PANEL_V1_HIDE_MODE_", has_type_id = false)] + public enum HideMode { + NEVER, + MAXIMIZED_FOCUS_WINDOW, + OVERLAPPING_FOCUS_WINDOW, + OVERLAPPING_WINDOW, + ALWAYS + } + + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "struct io_elementary_pantheon_panel_v1_interface")] + public struct PanelInterface { + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "io_elementary_pantheon_panel_v1_interface")] + public static Wl.Interface iface; + public Destroy destroy; + public SetAnchor set_anchor; + public Focus focus; + public SetSize set_size; + public SetHideMode set_hide_mode; + } + + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "struct io_elementary_pantheon_widget_v1_interface")] + public struct WidgetInterface { + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "io_elementary_pantheon_widget_v1_interface")] + public static Wl.Interface iface; + public Destroy destroy; + } + + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "struct io_elementary_pantheon_extended_behavior_v1_interface")] + public struct ExtendedBehaviorInterface { + [CCode (cheader_filename = "pantheon-desktop-shell-server-protocol.h", cname = "io_elementary_pantheon_extended_behavior_v1_interface")] + public static Wl.Interface iface; + public Destroy destroy; + public SetKeepAbove set_keep_above; + public MakeCentered make_centered; + public Focus focus; + } + + [CCode (has_target = false, has_typedef = false)] + public delegate void GetPanel (Wl.Client client, Wl.Resource resource, uint32 output, Wl.Resource surface); + [CCode (has_target = false, has_typedef = false)] + public delegate void GetWidget (Wl.Client client, Wl.Resource resource, uint32 output, Wl.Resource surface); + [CCode (has_target = false, has_typedef = false)] + public delegate void GetExtendedBehavior (Wl.Client client, Wl.Resource resource, uint32 output, Wl.Resource surface); + [CCode (has_target = false, has_typedef = false)] + public delegate void SetAnchor (Wl.Client client, Wl.Resource resource, [CCode (type = "uint32_t")] Anchor anchor); + [CCode (has_target = false, has_typedef = false)] + public delegate void Focus (Wl.Client client, Wl.Resource resource); + [CCode (has_target = false, has_typedef = false)] + public delegate void SetSize (Wl.Client client, Wl.Resource resource, int width, int height); + [CCode (has_target = false, has_typedef = false)] + public delegate void SetHideMode (Wl.Client client, Wl.Resource resource, [CCode (type = "uint32_t")] HideMode hide_mode); + [CCode (has_target = false, has_typedef = false)] + public delegate void SetKeepAbove (Wl.Client client, Wl.Resource resource); + [CCode (has_target = false, has_typedef = false)] + public delegate void MakeCentered (Wl.Client client, Wl.Resource resource); + [CCode (has_target = false, has_typedef = false)] + public delegate void Destroy (Wl.Client client, Wl.Resource resource); +} diff --git a/src/Application.vala b/src/Application.vala index 20a136720..427c0d66a 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -1,5 +1,5 @@ /* - * Copyright 2018 elementary, Inc. (https://elementary.io) + * Copyright 2018-2024 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 @@ -19,21 +19,27 @@ * Authors: Corentin Noël */ -public int main (string[] args) { - Intl.setlocale (LocaleCategory.ALL, ""); - Intl.bind_textdomain_codeset (Constants.GETTEXT_PACKAGE, "UTF-8"); - Intl.textdomain (Constants.GETTEXT_PACKAGE); - Intl.bindtextdomain (Constants.GETTEXT_PACKAGE, Constants.LOCALE_DIR); +public class Greeter.Application : Gtk.Application { + public Application () { + Object ( + application_id: "io.elementary.greeter", + flags: ApplicationFlags.FLAGS_NONE + ); + } - var settings_daemon = new Greeter.SettingsDaemon (); - settings_daemon.start (); + construct { + Intl.setlocale (LocaleCategory.ALL, ""); + Intl.bind_textdomain_codeset (Constants.GETTEXT_PACKAGE, "UTF-8"); + Intl.textdomain (Constants.GETTEXT_PACKAGE); + Intl.bindtextdomain (Constants.GETTEXT_PACKAGE, Constants.LOCALE_DIR); + } - Gtk.init (ref args); + public override void activate () { + add_window (new Greeter.MainWindow ()); + active_window.show_all (); + } - var window = new Greeter.MainWindow (); - window.show_all (); - - Gtk.main (); - - return 0; + public static int main (string[] args) { + return new Greeter.Application ().run (args); + } } diff --git a/src/meson.build b/src/meson.build index 909954288..f3d33099e 100644 --- a/src/meson.build +++ b/src/meson.build @@ -18,9 +18,7 @@ executable( 'MainWindow.vala', 'PantheonAccountsServicePlugin.vala', 'PromptText.vala', - 'SettingsDaemon.vala', 'Settings.vala', - 'SubprocessSupervisor.vala', 'Cards/BaseCard.vala', 'Cards/ManualCard.vala', 'Cards/UserCard.vala', diff --git a/vapi/Meta-14.metadata b/vapi/Meta-14.metadata index a066790e3..0c39b96da 100644 --- a/vapi/Meta-14.metadata +++ b/vapi/Meta-14.metadata @@ -168,6 +168,9 @@ unsigned_long_hash.v type="ulong?" warning parent="Meta.Util" cheader_filename="meta/util.h" create_context parent="Meta.Context" name="new" symbol_type="constructor" cheader_filename="meta/meta-context.h" +Plugin.create_close_dialog unowned=false nullable +Plugin.create_inhibit_shortcuts_dialog unowned=false + BackgroundActor sealed BackgroundContent sealed BackgroundImage sealed diff --git a/vapi/libmutter.vapi b/vapi/libmutter.vapi index 0f420548b..c9c3584c7 100644 --- a/vapi/libmutter.vapi +++ b/vapi/libmutter.vapi @@ -690,9 +690,9 @@ namespace Meta { [NoWrapper] public virtual void confirm_display_change (); [NoWrapper] - public virtual unowned Meta.CloseDialog create_close_dialog (Meta.Window window); + public virtual Meta.CloseDialog? create_close_dialog (Meta.Window window); [NoWrapper] - public virtual unowned Meta.InhibitShortcutsDialog create_inhibit_shortcuts_dialog (Meta.Window window); + public virtual Meta.InhibitShortcutsDialog create_inhibit_shortcuts_dialog (Meta.Window window); [NoWrapper] public virtual void destroy (Meta.WindowActor actor); public void destroy_completed (Meta.WindowActor actor); diff --git a/vapi/mutter-cogl-14.deps b/vapi/mutter-cogl-14.deps index d73ec1643..06e943f94 100644 --- a/vapi/mutter-cogl-14.deps +++ b/vapi/mutter-cogl-14.deps @@ -2,3 +2,4 @@ pango glib-2.0 gio-2.0 mutter-mtk-14 +x11 diff --git a/vapi/wayland-server.deps b/vapi/wayland-server.deps new file mode 100644 index 000000000..b3188f742 --- /dev/null +++ b/vapi/wayland-server.deps @@ -0,0 +1 @@ +posix diff --git a/vapi/wayland-server.vapi b/vapi/wayland-server.vapi new file mode 100644 index 000000000..6fa1885b3 --- /dev/null +++ b/vapi/wayland-server.vapi @@ -0,0 +1,125 @@ +/* wayland-server.vapi + * + * Copyright 2022 Corentin Noël + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice (including the + * next paragraph) shall be included in all copies or substantial + * portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * Authors: + * Corentin Noël + */ + +[CCode (cprefix = "wl_", lower_case_cprefix = "wl_", cheader_filename = "wayland-server.h")] +namespace Wl { + [Compact] + [CCode (cname = "struct wl_display", free_function = "wl_display_destroy")] + public class Display { + [CCode (cname = "wl_display_create")] + public Display (); + public int add_socket (string name); + public unowned string add_socket_auto (); + public int add_socket_fd (int sock_fd); + public void terminate (); + public void run (); + public void flush_clients (); + public void destroy_clients (); + public uint32 get_serial (); + public uint32 next_serial (); + } + + [Compact] + [CCode (cname = "struct wl_client", free_function = "wl_client_destroy")] + public class Client { + [CCode (cname = "wl_client_create")] + public Client (Wl.Display display, int fd); + public void flush (); + public void get_credentials (out Posix.pid_t pid, out Posix.uid_t uid, out Posix.gid_t gid); + public int get_fd (); + public unowned Wl.Display get_display (); + [CCode (cname = "wl_resource_create")] + public unowned Wl.Resource? create_resource (ref Wl.Interface interface, int version, uint32 id); + } + + [Compact] + [CCode (cname = "struct wl_resource", free_function = "wl_resource_destroy")] + public class Resource { + public uint32 get_id (); + public unowned Wl.Client get_client (); + [CCode (simple_generics = true)] + public void set_user_data (T? data); + [CCode (simple_generics = true)] + public unowned T? get_user_data (); + public int get_version (); + public unowned string get_class (); + public void destroy (); + public void set_implementation (void* implementation, void* data, [CCode (delegate_target = false)] ResourceDestroyFunc destroy); + [PrintfFormat] + public void post_error(uint32 code, string format, ...); + } + [Compact] + [CCode (cname = "struct wl_interface")] + public class Interface { + public string name; + public int version; + [CCode (array_length = "method_count")] + public Wl.Message[] methods; + [CCode (array_length = "event_count")] + public Wl.Message[] events; + } + + [Compact] + [CCode (cname = "struct wl_message")] + public class Message { + public string name; + public string signature; + [CCode (array_length = false)] + public Wl.Interface?[] types; + } + + [Compact] + [CCode (cname = "struct wl_global", free_function = "wl_global_destroy")] + public class Global { + [CCode (cname = "wl_global_create")] + public static Wl.Global? create (Wl.Display display, ref Wl.Interface interface, int version, [CCode (delegate_target_pos = 3.9) ] Wl.GlobalBindFunc bind); + } + + [CCode (cheader_filename = "wayland-server-protocol.h", cname = "enum wl_display_error", cprefix="WL_DISPLAY_ERROR_", has_type_id = false)] + public enum DisplayError { + INVALID_OBJECT, + INVALID_METHOD, + NO_MEMORY, + IMPLEMENTATION, + } + + [CCode (cname = "wl_global_bind_func_t", instance_pos = 1.9)] + public delegate void GlobalBindFunc (Wl.Client client, uint32 version, uint32 id); + [CCode (cname = "wl_resource_destroy_func_t", has_target = false)] + public delegate void ResourceDestroyFunc (Wl.Resource resource); + [CCode (cname = "WAYLAND_VERSION_MAJOR")] + public const int VERSION_MAJOR; + [CCode (cname = "WAYLAND_VERSION_MINOR")] + public const int VERSION_MINOR; + [CCode (cname = "WAYLAND_VERSION_MICRO")] + public const int VERSION_MICRO; + [CCode (cname = "WAYLAND_VERSION")] + public const string VERSION; +} +