From e4bf77f46267730d5c2e771b5dcef6a338eaf88e Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Thu, 20 Aug 2020 09:32:00 +0200 Subject: Add blacklist hints for recent application names. --- ...atana.indicator.notifications.gschema.xml.in.in | 5 + src/indicator-notifications-settings.c | 43 +++++++++ src/indicator-notifications.c | 102 +++++++++++++++++++++ src/settings.h | 11 ++- 4 files changed, 156 insertions(+), 5 deletions(-) diff --git a/data/org.ayatana.indicator.notifications.gschema.xml.in.in b/data/org.ayatana.indicator.notifications.gschema.xml.in.in index 95eb284..c7b6277 100644 --- a/data/org.ayatana.indicator.notifications.gschema.xml.in.in +++ b/data/org.ayatana.indicator.notifications.gschema.xml.in.in @@ -5,6 +5,11 @@ <_summary>Discard notifications by application name <_description>If an application name is in the blacklist, all notifications matching the application name will be discarded. + + [] + Recent application names to suggest for the blacklist + Keeps track of recent application names so we can suggest them in the settings. + false <_summary>Clear notifications on middle click diff --git a/src/indicator-notifications-settings.c b/src/indicator-notifications-settings.c index 439413e..b01a709 100644 --- a/src/indicator-notifications-settings.c +++ b/src/indicator-notifications-settings.c @@ -44,6 +44,7 @@ static void indicator_notifications_settings_activate(GApplication *app); /* Utility Functions */ static void load_blacklist(IndicatorNotificationsSettings *self); +static void load_blacklist_hints(IndicatorNotificationsSettings *self); static void save_blacklist(IndicatorNotificationsSettings *self); static gboolean foreach_check_duplicates(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data); @@ -55,6 +56,7 @@ static void blacklist_add_clicked_cb(GtkButton *button, gpointer user_data); static void blacklist_remove_clicked_cb(GtkButton *button, gpointer user_data); static void button_toggled_cb(GtkToggleButton *button, gpointer user_data); static void max_items_changed_cb(GtkSpinButton *button, gpointer user_data); +static gboolean blacklist_entry_focus_in_cb(GtkWidget *widget, GdkEvent *event, gpointer user_data); static void load_blacklist(IndicatorNotificationsSettings *self) @@ -75,6 +77,26 @@ load_blacklist(IndicatorNotificationsSettings *self) g_strfreev(items); } +static void +load_blacklist_hints(IndicatorNotificationsSettings *self) +{ + GtkEntryCompletion *completion = gtk_entry_get_completion(GTK_ENTRY(self->blacklist_entry)); + GtkListStore *list = GTK_LIST_STORE(gtk_entry_completion_get_model(completion)); + GtkTreeIter iter; + gchar **items; + + gtk_list_store_clear(list); + + items = g_settings_get_strv(self->settings, NOTIFICATIONS_KEY_BLACKLIST_HINTS); + + for (int i = 0; items[i] != NULL; i++) { + gtk_list_store_append(list, &iter); + gtk_list_store_set(list, &iter, 0, items[i], -1); + } + + g_strfreev(items); +} + static void save_blacklist(IndicatorNotificationsSettings *self) { @@ -191,6 +213,15 @@ max_items_changed_cb(GtkSpinButton *button, gpointer user_data) g_settings_set_int(settings, NOTIFICATIONS_KEY_MAX_ITEMS, value); } +static gboolean +blacklist_entry_focus_in_cb(GtkWidget *widget, GdkEvent *event, gpointer user_data) +{ + IndicatorNotificationsSettings *self = (IndicatorNotificationsSettings *) user_data; + load_blacklist_hints(self); + g_signal_emit_by_name(widget, "changed", NULL); + return FALSE; +} + static void indicator_notifications_settings_activate(GApplication *app) { @@ -209,6 +240,8 @@ indicator_notifications_settings_activate(GApplication *app) GtkWidget *hbox; GtkWidget *button_3; GtkWidget *button_4; + GtkEntryCompletion *entry_completion; + GtkListStore *entry_list; IndicatorNotificationsSettings *self = (IndicatorNotificationsSettings *) app; @@ -309,6 +342,16 @@ indicator_notifications_settings_activate(GApplication *app) self->blacklist_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(hbox), self->blacklist_entry, TRUE, TRUE, 0); gtk_widget_show(self->blacklist_entry); + + entry_completion = gtk_entry_completion_new(); + entry_list = gtk_list_store_new(1, G_TYPE_STRING); + gtk_entry_completion_set_model(entry_completion, GTK_TREE_MODEL(entry_list)); + gtk_entry_completion_set_text_column(entry_completion, 0); + gtk_entry_completion_set_minimum_key_length(entry_completion, 0); + gtk_entry_set_completion(GTK_ENTRY(self->blacklist_entry), entry_completion); + /* When we focus the entry, emit the changed signal so we get the hints immediately */ + /* also update the blacklist hints from gsettings */ + g_signal_connect(self->blacklist_entry, "focus-in-event", G_CALLBACK(blacklist_entry_focus_in_cb), self); } static void diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index 07ccd26..ab9e900 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -77,6 +77,8 @@ struct _IndicatorNotificationsPrivate { GHashTable *blacklist; + GList *blacklist_hints; + GSettings *settings; }; @@ -86,6 +88,8 @@ struct _IndicatorNotificationsPrivate { #define INDICATOR_ICON_READ "ayatana-indicator-notification-read" #define INDICATOR_ICON_UNREAD "ayatana-indicator-notification-unread" +#define HINT_MAX 10 + GType indicator_notifications_get_type(void); /* Indicator Class Functions */ @@ -111,6 +115,9 @@ static void set_unread(IndicatorNotifications *self, gboolean unread); static void update_blacklist(IndicatorNotifications *self); static void update_clear_item_markup(IndicatorNotifications *self); static void update_indicator_visibility(IndicatorNotifications *self); +static void load_blacklist_hints(IndicatorNotifications *self); +static void save_blacklist_hints(IndicatorNotifications *self); +static void update_blacklist_hints(IndicatorNotifications *self, Notification *notification); /* Callbacks */ static void clear_item_activated_cb(GtkMenuItem *menuitem, gpointer user_data); @@ -203,6 +210,10 @@ indicator_notifications_init(IndicatorNotifications *self) self->priv->max_items = g_settings_get_int(self->priv->settings, NOTIFICATIONS_KEY_MAX_ITEMS); update_blacklist(self); g_signal_connect(self->priv->settings, "changed", G_CALLBACK(setting_changed_cb), self); + + /* Set up blacklist hints */ + self->priv->blacklist_hints = NULL; + load_blacklist_hints(self); } static void @@ -245,6 +256,11 @@ indicator_notifications_dispose(GObject *object) self->priv->blacklist = NULL; } + if(self->priv->blacklist_hints != NULL) { + g_list_free_full(self->priv->blacklist_hints, g_free); + self->priv->blacklist_hints = NULL; + } + G_OBJECT_CLASS (indicator_notifications_parent_class)->dispose (object); return; } @@ -500,6 +516,88 @@ update_indicator_visibility(IndicatorNotifications *self) } } +/** + * load_blacklist_hints: + * @self: the indicator object + * + * Loads the blacklist hints from gsettings + **/ +static void +load_blacklist_hints(IndicatorNotifications *self) +{ + g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); + g_return_if_fail(self->priv->blacklist_hints == NULL); + + gchar **items = g_settings_get_strv(self->priv->settings, NOTIFICATIONS_KEY_BLACKLIST_HINTS); + int i; + + for (i = 0; items[i] != NULL; i++) { + self->priv->blacklist_hints = g_list_prepend(self->priv->blacklist_hints, items[i]); + } + + g_free(items); +} + +/** + * save_blacklist_hints: + * @self: the indicator object + * + * Saves the blacklist hints to gsettings + **/ +static void +save_blacklist_hints(IndicatorNotifications *self) +{ + g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); + + gchar *hints[HINT_MAX + 1]; + int i = 0; + + GList *l; + for (l = self->priv->blacklist_hints; (l != NULL) && (i < HINT_MAX); l = l->next, i++) { + hints[i] = (gchar *) l->data; + } + + hints[i] = NULL; + + g_settings_set_strv(self->priv->settings, NOTIFICATIONS_KEY_BLACKLIST_HINTS, (const gchar **) hints); +} + +/** + * update_blacklist_hints: + * @self: the indicator object + * + * Adds an application name to the hints + **/ +static void +update_blacklist_hints(IndicatorNotifications *self, Notification *notification) +{ + g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); + g_return_if_fail(IS_NOTIFICATION(notification)); + + const gchar *appname = notification_get_app_name(notification); + + /* Avoid duplicates */ + GList *l; + for (l = self->priv->blacklist_hints; l != NULL; l = l->next) { + if (g_strcmp0(appname, (const gchar *) l->data) == 0) + return; + } + + /* Add the appname */ + self->priv->blacklist_hints = g_list_prepend(self->priv->blacklist_hints, g_strdup(appname)); + + /* Keep only a reasonable number */ + while (g_list_length(self->priv->blacklist_hints) > HINT_MAX) { + GList *last = g_list_last(self->priv->blacklist_hints); + g_free(last->data); + self->priv->blacklist_hints = g_list_delete_link(self->priv->blacklist_hints, last); + } + + /* Save the hints */ + /* FIXME: maybe don't do this every update */ + save_blacklist_hints(self); +} + /** * clear_item_activated_cb: * @menuitem: the clear menuitem @@ -625,6 +723,10 @@ message_received_cb(DBusSpy *spy, Notification *note, gpointer user_data) return; } + /* Save a hint for the appname */ + update_blacklist_hints(self, note); + + /* Create the menuitem */ GtkWidget *item = notification_menuitem_new(); notification_menuitem_set_from_notification(NOTIFICATION_MENUITEM(item), note); g_signal_connect(item, NOTIFICATION_MENUITEM_SIGNAL_CLICKED, G_CALLBACK(notification_clicked_cb), self); diff --git a/src/settings.h b/src/settings.h index 87e341f..53b9780 100644 --- a/src/settings.h +++ b/src/settings.h @@ -5,10 +5,11 @@ #ifndef __SETTINGS_H__ #define __SETTINGS_H__ -#define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications" -#define NOTIFICATIONS_KEY_BLACKLIST "blacklist" -#define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" -#define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" -#define NOTIFICATIONS_KEY_MAX_ITEMS "max-items" +#define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications" +#define NOTIFICATIONS_KEY_BLACKLIST "blacklist" +#define NOTIFICATIONS_KEY_BLACKLIST_HINTS "blacklist-hints" +#define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" +#define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" +#define NOTIFICATIONS_KEY_MAX_ITEMS "max-items" #endif -- cgit v1.2.3 From 77fb1c1f8f3f2856f9c991198cb231f22d19b40e Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Fri, 30 Aug 2019 23:23:53 -0400 Subject: Add mate do-not-disturb option if available. --- src/indicator-notifications-settings.c | 107 +++++++++++++++++++++++++-------- 1 file changed, 83 insertions(+), 24 deletions(-) diff --git a/src/indicator-notifications-settings.c b/src/indicator-notifications-settings.c index b01a709..4a36f52 100644 --- a/src/indicator-notifications-settings.c +++ b/src/indicator-notifications-settings.c @@ -13,6 +13,9 @@ #define SCHEMA_KEY "schema-key" +#define MATE_SCHEMA "org.mate.NotificationDaemon" +#define MATE_KEY_DND "do-not-disturb" + #define COLUMN_APPNAME 0 typedef struct @@ -51,6 +54,11 @@ static gboolean foreach_check_duplicates(GtkTreeModel *model, GtkTreePath *path, static gboolean foreach_build_array(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data); +/* Mate Functions */ +static gboolean has_mate_dnd(); +static gboolean get_mate_dnd(); +static void mate_dnd_button_toggled_cb(GtkToggleButton *button, gpointer user_data); + /* Callbacks */ static void blacklist_add_clicked_cb(GtkButton *button, gpointer user_data); static void blacklist_remove_clicked_cb(GtkButton *button, gpointer user_data); @@ -147,6 +155,47 @@ foreach_build_array(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, g return FALSE; } +static gboolean +has_mate_dnd() +{ + /* Check if we can access the mate do-not-disturb key */ + GSettingsSchemaSource *source = g_settings_schema_source_get_default(); + if (source == NULL) { + return FALSE; + } + + /* Lookup the schema */ + GSettingsSchema *schema = g_settings_schema_source_lookup(source, MATE_SCHEMA, FALSE); + + /* Couldn't find the schema */ + if (schema == NULL) { + return FALSE; + } + + /* Found the schema, make sure we have the do-not-disturb key */ + gboolean result = g_settings_schema_has_key(schema, MATE_KEY_DND); + g_settings_schema_unref(schema); + + return result; +} + +static gboolean +get_mate_dnd() +{ + GSettings *settings = g_settings_new(MATE_SCHEMA); + gboolean result = g_settings_get_boolean(settings, MATE_KEY_DND); + g_object_unref(settings); + return result; +} + +static void +mate_dnd_button_toggled_cb(GtkToggleButton *button, gpointer user_data) +{ + GSettings *settings = g_settings_new(MATE_SCHEMA); + g_settings_set_boolean(settings, MATE_KEY_DND, gtk_toggle_button_get_active(button)); + g_object_unref(settings); +} + static void blacklist_add_clicked_cb(GtkButton *button, gpointer user_data) { @@ -228,8 +277,9 @@ indicator_notifications_settings_activate(GApplication *app) GtkWidget *window; GtkWidget *frame; GtkWidget *vbox; - GtkWidget *button_1; - GtkWidget *button_2; + GtkWidget *button_cmc; + GtkWidget *button_hide_ind; + GtkWidget *button_mate_dnd; GtkWidget *spin; GtkWidget *spin_label; GtkWidget *blacklist_label; @@ -238,8 +288,8 @@ indicator_notifications_settings_activate(GApplication *app) GtkTreeViewColumn *column; GtkCellRenderer *renderer; GtkWidget *hbox; - GtkWidget *button_3; - GtkWidget *button_4; + GtkWidget *button_blacklist_rem; + GtkWidget *button_blacklist_add; GtkEntryCompletion *entry_completion; GtkListStore *entry_list; @@ -274,22 +324,31 @@ indicator_notifications_settings_activate(GApplication *app) gtk_widget_show(vbox); /* clear-on-middle-click */ - button_1 = gtk_check_button_new_with_label(_("Clear notifications on middle click")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_1), + button_cmc = gtk_check_button_new_with_label(_("Clear notifications on middle click")); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_cmc), g_settings_get_boolean(self->settings, NOTIFICATIONS_KEY_CLEAR_MC)); - g_object_set_data(G_OBJECT(button_1), SCHEMA_KEY, NOTIFICATIONS_KEY_CLEAR_MC); - g_signal_connect(button_1, "toggled", G_CALLBACK(button_toggled_cb), self->settings); - gtk_box_pack_start(GTK_BOX(vbox), button_1, FALSE, FALSE, 4); - gtk_widget_show(button_1); + g_object_set_data(G_OBJECT(button_cmc), SCHEMA_KEY, NOTIFICATIONS_KEY_CLEAR_MC); + g_signal_connect(button_cmc, "toggled", G_CALLBACK(button_toggled_cb), self->settings); + gtk_box_pack_start(GTK_BOX(vbox), button_cmc, FALSE, FALSE, 4); + gtk_widget_show(button_cmc); /* hide-indicator */ - button_2 = gtk_check_button_new_with_label(_("Hide indicator")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_2), + button_hide_ind = gtk_check_button_new_with_label(_("Hide indicator")); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_hide_ind), g_settings_get_boolean(self->settings, NOTIFICATIONS_KEY_HIDE_INDICATOR)); - g_object_set_data(G_OBJECT(button_2), SCHEMA_KEY, NOTIFICATIONS_KEY_HIDE_INDICATOR); - g_signal_connect(button_2, "toggled", G_CALLBACK(button_toggled_cb), self->settings); - gtk_box_pack_start(GTK_BOX(vbox), button_2, FALSE, FALSE, 4); - gtk_widget_show(button_2); + g_object_set_data(G_OBJECT(button_hide_ind), SCHEMA_KEY, NOTIFICATIONS_KEY_HIDE_INDICATOR); + g_signal_connect(button_hide_ind, "toggled", G_CALLBACK(button_toggled_cb), self->settings); + gtk_box_pack_start(GTK_BOX(vbox), button_hide_ind, FALSE, FALSE, 4); + gtk_widget_show(button_hide_ind); + + /* mate do-not-disturb */ + if (has_mate_dnd()) { + button_mate_dnd = gtk_check_button_new_with_label(_("Mate Desktop Do Not Disturb")); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_mate_dnd), get_mate_dnd()); + g_signal_connect(button_mate_dnd, "toggled", G_CALLBACK(mate_dnd_button_toggled_cb), NULL); + gtk_box_pack_start(GTK_BOX(vbox), button_mate_dnd, FALSE, FALSE, 4); + gtk_widget_show(button_mate_dnd); + } /* max-items */ /* FIXME: indicator does not change max items until restart... */ @@ -329,15 +388,15 @@ indicator_notifications_settings_activate(GApplication *app) gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); gtk_widget_show(hbox); - button_3 = gtk_button_new_with_label(_("Remove")); - g_signal_connect(button_3, "clicked", G_CALLBACK(blacklist_remove_clicked_cb), self); - gtk_box_pack_start(GTK_BOX(hbox), button_3, FALSE, FALSE, 2); - gtk_widget_show(button_3); + button_blacklist_rem = gtk_button_new_with_label(_("Remove")); + g_signal_connect(button_blacklist_rem, "clicked", G_CALLBACK(blacklist_remove_clicked_cb), self); + gtk_box_pack_start(GTK_BOX(hbox), button_blacklist_rem, FALSE, FALSE, 2); + gtk_widget_show(button_blacklist_rem); - button_4 = gtk_button_new_with_label(_("Add")); - g_signal_connect(button_4, "clicked", G_CALLBACK(blacklist_add_clicked_cb), self); - gtk_box_pack_start(GTK_BOX(hbox), button_4, FALSE, FALSE, 2); - gtk_widget_show(button_4); + button_blacklist_add = gtk_button_new_with_label(_("Add")); + g_signal_connect(button_blacklist_add, "clicked", G_CALLBACK(blacklist_add_clicked_cb), self); + gtk_box_pack_start(GTK_BOX(hbox), button_blacklist_add, FALSE, FALSE, 2); + gtk_widget_show(button_blacklist_add); self->blacklist_entry = gtk_entry_new(); gtk_box_pack_start(GTK_BOX(hbox), self->blacklist_entry, TRUE, TRUE, 0); -- cgit v1.2.3 From 82ca9185e9894121cc1d13bb06e7dc0e09dfd01b Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Thu, 20 Aug 2020 09:35:44 +0200 Subject: Add our own do-not-disturb setting. * Remove the MATE specific code from indicator-notifications-settings. * When do-not-disturb is set the indicator will try to set do-not-disturb on all supported desktops (currently only MATE). --- ...atana.indicator.notifications.gschema.xml.in.in | 5 ++ src/indicator-notifications-settings.c | 67 +++------------------ src/indicator-notifications.c | 69 ++++++++++++++++++++++ src/settings.h | 4 ++ 4 files changed, 87 insertions(+), 58 deletions(-) diff --git a/data/org.ayatana.indicator.notifications.gschema.xml.in.in b/data/org.ayatana.indicator.notifications.gschema.xml.in.in index c7b6277..db9777a 100644 --- a/data/org.ayatana.indicator.notifications.gschema.xml.in.in +++ b/data/org.ayatana.indicator.notifications.gschema.xml.in.in @@ -15,6 +15,11 @@ <_summary>Clear notifications on middle click <_description>Normally when middle clicking the notification icon, the unread status will be toggled if the queue is not empty. With this option enabled, the notification queue will be cleared instead. + + false + Enable do-not-disturb mode + On supported desktops enables do-not-disturb mode on the notification daemon. + false <_summary>Hide the indicator diff --git a/src/indicator-notifications-settings.c b/src/indicator-notifications-settings.c index 4a36f52..3e9517c 100644 --- a/src/indicator-notifications-settings.c +++ b/src/indicator-notifications-settings.c @@ -13,9 +13,6 @@ #define SCHEMA_KEY "schema-key" -#define MATE_SCHEMA "org.mate.NotificationDaemon" -#define MATE_KEY_DND "do-not-disturb" - #define COLUMN_APPNAME 0 typedef struct @@ -54,11 +51,6 @@ static gboolean foreach_check_duplicates(GtkTreeModel *model, GtkTreePath *path, static gboolean foreach_build_array(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data); -/* Mate Functions */ -static gboolean has_mate_dnd(); -static gboolean get_mate_dnd(); -static void mate_dnd_button_toggled_cb(GtkToggleButton *button, gpointer user_data); - /* Callbacks */ static void blacklist_add_clicked_cb(GtkButton *button, gpointer user_data); static void blacklist_remove_clicked_cb(GtkButton *button, gpointer user_data); @@ -155,47 +147,6 @@ foreach_build_array(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, g return FALSE; } -static gboolean -has_mate_dnd() -{ - /* Check if we can access the mate do-not-disturb key */ - GSettingsSchemaSource *source = g_settings_schema_source_get_default(); - if (source == NULL) { - return FALSE; - } - - /* Lookup the schema */ - GSettingsSchema *schema = g_settings_schema_source_lookup(source, MATE_SCHEMA, FALSE); - - /* Couldn't find the schema */ - if (schema == NULL) { - return FALSE; - } - - /* Found the schema, make sure we have the do-not-disturb key */ - gboolean result = g_settings_schema_has_key(schema, MATE_KEY_DND); - g_settings_schema_unref(schema); - - return result; -} - -static gboolean -get_mate_dnd() -{ - GSettings *settings = g_settings_new(MATE_SCHEMA); - gboolean result = g_settings_get_boolean(settings, MATE_KEY_DND); - g_object_unref(settings); - return result; -} - -static void -mate_dnd_button_toggled_cb(GtkToggleButton *button, gpointer user_data) -{ - GSettings *settings = g_settings_new(MATE_SCHEMA); - g_settings_set_boolean(settings, MATE_KEY_DND, gtk_toggle_button_get_active(button)); - g_object_unref(settings); -} - static void blacklist_add_clicked_cb(GtkButton *button, gpointer user_data) { @@ -279,7 +230,7 @@ indicator_notifications_settings_activate(GApplication *app) GtkWidget *vbox; GtkWidget *button_cmc; GtkWidget *button_hide_ind; - GtkWidget *button_mate_dnd; + GtkWidget *button_dnd; GtkWidget *spin; GtkWidget *spin_label; GtkWidget *blacklist_label; @@ -341,14 +292,14 @@ indicator_notifications_settings_activate(GApplication *app) gtk_box_pack_start(GTK_BOX(vbox), button_hide_ind, FALSE, FALSE, 4); gtk_widget_show(button_hide_ind); - /* mate do-not-disturb */ - if (has_mate_dnd()) { - button_mate_dnd = gtk_check_button_new_with_label(_("Mate Desktop Do Not Disturb")); - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_mate_dnd), get_mate_dnd()); - g_signal_connect(button_mate_dnd, "toggled", G_CALLBACK(mate_dnd_button_toggled_cb), NULL); - gtk_box_pack_start(GTK_BOX(vbox), button_mate_dnd, FALSE, FALSE, 4); - gtk_widget_show(button_mate_dnd); - } + /* do-not-disturb */ + button_dnd = gtk_check_button_new_with_label(_("Do not disturb")); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_dnd), + g_settings_get_boolean(self->settings, NOTIFICATIONS_KEY_DND)); + g_object_set_data(G_OBJECT(button_dnd), SCHEMA_KEY, NOTIFICATIONS_KEY_DND); + g_signal_connect(button_dnd, "toggled", G_CALLBACK(button_toggled_cb), self->settings); + gtk_box_pack_start(GTK_BOX(vbox), button_dnd, FALSE, FALSE, 4); + gtk_widget_show(button_dnd); /* max-items */ /* FIXME: indicator does not change max items until restart... */ diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index ab9e900..ef8aff4 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -61,6 +61,7 @@ struct _IndicatorNotificationsPrivate { GList *hidden_items; gboolean clear_on_middle_click; + gboolean do_not_disturb; gboolean have_unread; gboolean hide_indicator; @@ -118,6 +119,8 @@ static void update_indicator_visibility(IndicatorNotifications *self); static void load_blacklist_hints(IndicatorNotifications *self); static void save_blacklist_hints(IndicatorNotifications *self); static void update_blacklist_hints(IndicatorNotifications *self, Notification *notification); +static void update_do_not_disturb(IndicatorNotifications *self); +static void settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value); /* Callbacks */ static void clear_item_activated_cb(GtkMenuItem *menuitem, gpointer user_data); @@ -206,9 +209,11 @@ indicator_notifications_init(IndicatorNotifications *self) /* Connect to GSettings */ self->priv->settings = g_settings_new(NOTIFICATIONS_SCHEMA); self->priv->clear_on_middle_click = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_CLEAR_MC); + self->priv->do_not_disturb = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_DND); self->priv->hide_indicator = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_HIDE_INDICATOR); self->priv->max_items = g_settings_get_int(self->priv->settings, NOTIFICATIONS_KEY_MAX_ITEMS); update_blacklist(self); + update_do_not_disturb(self); g_signal_connect(self->priv->settings, "changed", G_CALLBACK(setting_changed_cb), self); /* Set up blacklist hints */ @@ -598,6 +603,66 @@ update_blacklist_hints(IndicatorNotifications *self, Notification *notification) save_blacklist_hints(self); } +/** + * update_do_not_disturb: + * @self: the indicator object + * + * Updates the icon with the do-not-disturb version and sets do-not-disturb options + * on external notification daemons that are supported. + **/ +static void +update_do_not_disturb(IndicatorNotifications *self) +{ + g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); + + /* TODO: update icons here */ + + /* Mate do-not-disturb support */ + settings_try_set_boolean(MATE_SCHEMA, MATE_KEY_DND, self->priv->do_not_disturb); +} + +/** + * settings_try_set_boolean: + * @schema: the GSettings schema + * @key: the GSettings key + * @value: the boolean value + * + * Checks to see if the schema and key exist before setting the value. + */ +static void +settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value) +{ + /* Check if we can access the schema */ + GSettingsSchemaSource *source = g_settings_schema_source_get_default(); + if (source == NULL) { + return; + } + + /* Lookup the schema */ + GSettingsSchema *source_schema = g_settings_schema_source_lookup(source, schema, FALSE); + + /* Couldn't find the schema */ + if (source_schema == NULL) { + return; + } + + /* Found the schema, make sure we have the key */ + if (g_settings_schema_has_key(source_schema, key)) { + /* Make sure the key is of boolean type */ + GSettingsSchemaKey *source_key = g_settings_schema_get_key(source_schema, key); + + if (g_variant_type_equal(g_settings_schema_key_get_value_type(source_key), G_VARIANT_TYPE_BOOLEAN)) { + /* Set the value */ + GSettings *settings = g_settings_new(schema); + g_settings_set_boolean(settings, key, value); + g_object_unref(settings); + } + + g_settings_schema_key_unref(source_key); + } + g_settings_schema_unref(source_schema); +} + /** * clear_item_activated_cb: * @menuitem: the clear menuitem @@ -662,6 +727,10 @@ setting_changed_cb(GSettings *settings, gchar *key, gpointer user_data) self->priv->hide_indicator = g_settings_get_boolean(settings, NOTIFICATIONS_KEY_HIDE_INDICATOR); update_indicator_visibility(self); } + else if(g_strcmp0(key, NOTIFICATIONS_KEY_DND) == 0) { + self->priv->do_not_disturb = g_settings_get_boolean(settings, NOTIFICATIONS_KEY_DND); + update_do_not_disturb(self); + } else if(g_strcmp0(key, NOTIFICATIONS_KEY_CLEAR_MC) == 0) { self->priv->clear_on_middle_click = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_CLEAR_MC); } diff --git a/src/settings.h b/src/settings.h index 53b9780..90945e1 100644 --- a/src/settings.h +++ b/src/settings.h @@ -9,7 +9,11 @@ #define NOTIFICATIONS_KEY_BLACKLIST "blacklist" #define NOTIFICATIONS_KEY_BLACKLIST_HINTS "blacklist-hints" #define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" +#define NOTIFICATIONS_KEY_DND "do-not-disturb" #define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" #define NOTIFICATIONS_KEY_MAX_ITEMS "max-items" +#define MATE_SCHEMA "org.mate.NotificationDaemon" +#define MATE_KEY_DND "do-not-disturb" + #endif -- cgit v1.2.3 From 8f195248f8b7ca0cc6c87c02188c4ed360964143 Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Thu, 20 Aug 2020 09:38:41 +0200 Subject: Add do-not-disturb mode read/unread icons. --- data/icons/Makefile.am | 4 +- .../ayatana-indicator-notification-read-dnd.svg | 155 +++++++++++++++ .../ayatana-indicator-notification-unread-dnd.svg | 218 +++++++++++++++++++++ src/indicator-notifications.c | 46 ++++- 4 files changed, 412 insertions(+), 11 deletions(-) create mode 100644 data/icons/ayatana-indicator-notification-read-dnd.svg create mode 100644 data/icons/ayatana-indicator-notification-unread-dnd.svg diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am index 13251ac..47d1ac1 100644 --- a/data/icons/Makefile.am +++ b/data/icons/Makefile.am @@ -4,6 +4,8 @@ icons_DATA = \ ayatana-indicator-notification-close-select.svg \ ayatana-indicator-notification-close-deselect.svg \ ayatana-indicator-notification-read.svg \ - ayatana-indicator-notification-unread.svg + ayatana-indicator-notification-read-dnd.svg \ + ayatana-indicator-notification-unread.svg \ + ayatana-indicator-notification-unread-dnd.svg EXTRA_DIST = $(icons_DATA) diff --git a/data/icons/ayatana-indicator-notification-read-dnd.svg b/data/icons/ayatana-indicator-notification-read-dnd.svg new file mode 100644 index 0000000..d262e90 --- /dev/null +++ b/data/icons/ayatana-indicator-notification-read-dnd.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/data/icons/ayatana-indicator-notification-unread-dnd.svg b/data/icons/ayatana-indicator-notification-unread-dnd.svg new file mode 100644 index 0000000..23b859e --- /dev/null +++ b/data/icons/ayatana-indicator-notification-unread-dnd.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index ef8aff4..db53df7 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -86,8 +86,10 @@ struct _IndicatorNotificationsPrivate { #include "settings.h" #define INDICATOR_ICON_SIZE 22 -#define INDICATOR_ICON_READ "ayatana-indicator-notification-read" -#define INDICATOR_ICON_UNREAD "ayatana-indicator-notification-unread" +#define INDICATOR_ICON_READ "ayatana-indicator-notification-read" +#define INDICATOR_ICON_UNREAD "ayatana-indicator-notification-unread" +#define INDICATOR_ICON_READ_DND "ayatana-indicator-notification-read-dnd" +#define INDICATOR_ICON_UNREAD_DND "ayatana-indicator-notification-unread-dnd" #define HINT_MAX 10 @@ -113,6 +115,7 @@ static void clear_menuitems(IndicatorNotifications *self); static void insert_menuitem(IndicatorNotifications *self, GtkWidget *item); static void remove_menuitem(IndicatorNotifications *self, GtkWidget *item); static void set_unread(IndicatorNotifications *self, gboolean unread); +static void update_unread(IndicatorNotifications *self); static void update_blacklist(IndicatorNotifications *self); static void update_clear_item_markup(IndicatorNotifications *self); static void update_indicator_visibility(IndicatorNotifications *self); @@ -213,7 +216,6 @@ indicator_notifications_init(IndicatorNotifications *self) self->priv->hide_indicator = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_HIDE_INDICATOR); self->priv->max_items = g_settings_get_int(self->priv->settings, NOTIFICATIONS_KEY_MAX_ITEMS); update_blacklist(self); - update_do_not_disturb(self); g_signal_connect(self->priv->settings, "changed", G_CALLBACK(setting_changed_cb), self); /* Set up blacklist hints */ @@ -284,7 +286,8 @@ get_image(IndicatorObject *io) if(self->priv->image == NULL) { self->priv->image = GTK_IMAGE(gtk_image_new()); - set_unread(self, FALSE); + /* We have to wait until the image is created to update do-not-disturb the first time */ + update_do_not_disturb(self); update_indicator_visibility(self); } @@ -438,14 +441,37 @@ set_unread(IndicatorNotifications *self, gboolean unread) { g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); - if(unread) { - gtk_image_set_from_icon_name(self->priv->image, INDICATOR_ICON_UNREAD, GTK_ICON_SIZE_MENU); + self->priv->have_unread = unread; + update_unread(self); +} + +/** + * update_unread: + * @self: the indicator object + * + * Updates the indicator icons. + **/ +static void +update_unread(IndicatorNotifications *self) +{ + g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); + + if(self->priv->have_unread) { + if (self->priv->do_not_disturb) { + gtk_image_set_from_icon_name(self->priv->image, INDICATOR_ICON_UNREAD_DND, GTK_ICON_SIZE_MENU); + } + else { + gtk_image_set_from_icon_name(self->priv->image, INDICATOR_ICON_UNREAD, GTK_ICON_SIZE_MENU); + } } else { - gtk_image_set_from_icon_name(self->priv->image, INDICATOR_ICON_READ, GTK_ICON_SIZE_MENU); + if (self->priv->do_not_disturb) { + gtk_image_set_from_icon_name(self->priv->image, INDICATOR_ICON_READ_DND, GTK_ICON_SIZE_MENU); + } + else { + gtk_image_set_from_icon_name(self->priv->image, INDICATOR_ICON_READ, GTK_ICON_SIZE_MENU); + } } - - self->priv->have_unread = unread; } /** @@ -615,7 +641,7 @@ update_do_not_disturb(IndicatorNotifications *self) { g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); - /* TODO: update icons here */ + update_unread(self); /* Mate do-not-disturb support */ settings_try_set_boolean(MATE_SCHEMA, MATE_KEY_DND, self->priv->do_not_disturb); -- cgit v1.2.3 From d1b76b9aa5330cc27a0f3ecefc57becfbe8ea02e Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Thu, 5 Sep 2019 09:23:54 -0400 Subject: Discard notifications when indicator is hidden. --- src/indicator-notifications.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index db53df7..2ab4083 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -805,6 +805,12 @@ message_received_cb(DBusSpy *spy, Notification *note, gpointer user_data) g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(user_data)); IndicatorNotifications *self = INDICATOR_NOTIFICATIONS(user_data); + /* Discard notifications if we are hidden */ + if(self->priv->hide_indicator) { + g_object_unref(note); + return; + } + /* Discard useless notifications */ if(notification_is_private(note) || notification_is_empty(note)) { g_object_unref(note); -- cgit v1.2.3 From 3fbc05dc4cbf564644f2500508e642eb80f07264 Mon Sep 17 00:00:00 2001 From: Tasos Sahanidis Date: Thu, 20 Aug 2020 09:41:52 +0200 Subject: Add option to swap Settings and Clear. --- ...atana.indicator.notifications.gschema.xml.in.in | 5 ++++ src/indicator-notifications-settings.c | 10 ++++++++ src/indicator-notifications.c | 30 ++++++++++++++++++++++ src/settings.h | 15 ++++++----- 4 files changed, 53 insertions(+), 7 deletions(-) diff --git a/data/org.ayatana.indicator.notifications.gschema.xml.in.in b/data/org.ayatana.indicator.notifications.gschema.xml.in.in index db9777a..7c01fee 100644 --- a/data/org.ayatana.indicator.notifications.gschema.xml.in.in +++ b/data/org.ayatana.indicator.notifications.gschema.xml.in.in @@ -31,5 +31,10 @@ <_summary>Maximum number of visible items <_description>The indicator will only display at most the number of notifications indicated by this value. + + false + Swap the Clear and Settings items in the menu + This will move the Clear option to the bottom of the menu, below the Settings item. + diff --git a/src/indicator-notifications-settings.c b/src/indicator-notifications-settings.c index 3e9517c..46fd37b 100644 --- a/src/indicator-notifications-settings.c +++ b/src/indicator-notifications-settings.c @@ -231,6 +231,7 @@ indicator_notifications_settings_activate(GApplication *app) GtkWidget *button_cmc; GtkWidget *button_hide_ind; GtkWidget *button_dnd; + GtkWidget *button_swap_clr_s; GtkWidget *spin; GtkWidget *spin_label; GtkWidget *blacklist_label; @@ -301,6 +302,15 @@ indicator_notifications_settings_activate(GApplication *app) gtk_box_pack_start(GTK_BOX(vbox), button_dnd, FALSE, FALSE, 4); gtk_widget_show(button_dnd); + /* swap-clear-settings */ + button_swap_clr_s = gtk_check_button_new_with_label(_("Swap \"Clear\" and \"Settings\" items")); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button_swap_clr_s), + g_settings_get_boolean(self->settings, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS)); + g_object_set_data(G_OBJECT(button_swap_clr_s), SCHEMA_KEY, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS); + g_signal_connect(button_swap_clr_s, "toggled", G_CALLBACK(button_toggled_cb), self->settings); + gtk_box_pack_start(GTK_BOX(vbox), button_swap_clr_s, FALSE, FALSE, 4); + gtk_widget_show(button_swap_clr_s); + /* max-items */ /* FIXME: indicator does not change max items until restart... */ spin_label = gtk_label_new(_("Maximum number of visible notifications")); diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index 2ab4083..67dcb96 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -64,6 +64,7 @@ struct _IndicatorNotificationsPrivate { gboolean do_not_disturb; gboolean have_unread; gboolean hide_indicator; + gboolean swap_clear_settings; gint max_items; @@ -124,6 +125,7 @@ static void save_blacklist_hints(IndicatorNotifications *self); static void update_blacklist_hints(IndicatorNotifications *self, Notification *notification); static void update_do_not_disturb(IndicatorNotifications *self); static void settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value); +static void swap_clear_settings_items(IndicatorNotifications *self); /* Callbacks */ static void clear_item_activated_cb(GtkMenuItem *menuitem, gpointer user_data); @@ -216,6 +218,9 @@ indicator_notifications_init(IndicatorNotifications *self) self->priv->hide_indicator = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_HIDE_INDICATOR); self->priv->max_items = g_settings_get_int(self->priv->settings, NOTIFICATIONS_KEY_MAX_ITEMS); update_blacklist(self); + self->priv->swap_clear_settings = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS); + if(self->priv->swap_clear_settings) + swap_clear_settings_items(self); g_signal_connect(self->priv->settings, "changed", G_CALLBACK(setting_changed_cb), self); /* Set up blacklist hints */ @@ -689,6 +694,27 @@ settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value) g_settings_schema_unref(source_schema); } +/** + * swap_clear_settings_items: + * @self: the indicator object + * + * Swaps the position of the clear and settings items. + **/ +static void +swap_clear_settings_items(IndicatorNotifications *self) +{ + g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); + + // Pick which widget to move + GtkWidget *widget = self->priv->settings_item; + if(self->priv->swap_clear_settings) + widget = self->priv->clear_item; + + gtk_container_remove(GTK_CONTAINER(self->priv->menu), g_object_ref(widget)); + gtk_menu_shell_append(GTK_MENU_SHELL(self->priv->menu), widget); + g_object_unref(widget); +} + /** * clear_item_activated_cb: * @menuitem: the clear menuitem @@ -763,6 +789,10 @@ setting_changed_cb(GSettings *settings, gchar *key, gpointer user_data) else if(g_strcmp0(key, NOTIFICATIONS_KEY_BLACKLIST) == 0) { update_blacklist(self); } + else if(g_strcmp0(key, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS) == 0) { + self->priv->swap_clear_settings = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS); + swap_clear_settings_items(self); + } /* TODO: Trim or extend the notifications list based on "max-items" key * (Currently requires a restart) */ } diff --git a/src/settings.h b/src/settings.h index 90945e1..4eb0030 100644 --- a/src/settings.h +++ b/src/settings.h @@ -5,13 +5,14 @@ #ifndef __SETTINGS_H__ #define __SETTINGS_H__ -#define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications" -#define NOTIFICATIONS_KEY_BLACKLIST "blacklist" -#define NOTIFICATIONS_KEY_BLACKLIST_HINTS "blacklist-hints" -#define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" -#define NOTIFICATIONS_KEY_DND "do-not-disturb" -#define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" -#define NOTIFICATIONS_KEY_MAX_ITEMS "max-items" +#define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications" +#define NOTIFICATIONS_KEY_BLACKLIST "blacklist" +#define NOTIFICATIONS_KEY_BLACKLIST_HINTS "blacklist-hints" +#define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" +#define NOTIFICATIONS_KEY_DND "do-not-disturb" +#define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" +#define NOTIFICATIONS_KEY_MAX_ITEMS "max-items" +#define NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS "swap-clear-settings" #define MATE_SCHEMA "org.mate.NotificationDaemon" #define MATE_KEY_DND "do-not-disturb" -- cgit v1.2.3 From aca92b39f32f0d850f5a74b79591a587273c2168 Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Thu, 20 Aug 2020 09:45:37 +0200 Subject: Rename blacklist to filter-list. --- ...atana.indicator.notifications.gschema.xml.in.in | 8 +- src/indicator-notifications-settings.c | 126 ++++++++++----------- src/indicator-notifications.c | 98 ++++++++-------- src/settings.h | 4 +- 4 files changed, 118 insertions(+), 118 deletions(-) diff --git a/data/org.ayatana.indicator.notifications.gschema.xml.in.in b/data/org.ayatana.indicator.notifications.gschema.xml.in.in index 7c01fee..280cc2b 100644 --- a/data/org.ayatana.indicator.notifications.gschema.xml.in.in +++ b/data/org.ayatana.indicator.notifications.gschema.xml.in.in @@ -1,13 +1,13 @@ - + [] <_summary>Discard notifications by application name - <_description>If an application name is in the blacklist, all notifications matching the application name will be discarded. + <_description>If an application name is in the filter list, all notifications matching the application name will be discarded. - + [] - Recent application names to suggest for the blacklist + Recent application names to suggest for the filter list Keeps track of recent application names so we can suggest them in the settings. diff --git a/src/indicator-notifications-settings.c b/src/indicator-notifications-settings.c index 46fd37b..510a0ec 100644 --- a/src/indicator-notifications-settings.c +++ b/src/indicator-notifications-settings.c @@ -21,8 +21,8 @@ typedef struct GSettings *settings; - GtkWidget *blacklist_treeview; - GtkWidget *blacklist_entry; + GtkWidget *filter_list_treeview; + GtkWidget *filter_list_entry; /* GtkTreeModel foreach variables */ gboolean result; @@ -43,31 +43,31 @@ static void indicator_notifications_settings_dispose(GObject *object); static void indicator_notifications_settings_activate(GApplication *app); /* Utility Functions */ -static void load_blacklist(IndicatorNotificationsSettings *self); -static void load_blacklist_hints(IndicatorNotificationsSettings *self); -static void save_blacklist(IndicatorNotificationsSettings *self); +static void load_filter_list(IndicatorNotificationsSettings *self); +static void load_filter_list_hints(IndicatorNotificationsSettings *self); +static void save_filter_list(IndicatorNotificationsSettings *self); static gboolean foreach_check_duplicates(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data); static gboolean foreach_build_array(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data); /* Callbacks */ -static void blacklist_add_clicked_cb(GtkButton *button, gpointer user_data); -static void blacklist_remove_clicked_cb(GtkButton *button, gpointer user_data); +static void filter_list_add_clicked_cb(GtkButton *button, gpointer user_data); +static void filter_list_remove_clicked_cb(GtkButton *button, gpointer user_data); static void button_toggled_cb(GtkToggleButton *button, gpointer user_data); static void max_items_changed_cb(GtkSpinButton *button, gpointer user_data); -static gboolean blacklist_entry_focus_in_cb(GtkWidget *widget, GdkEvent *event, gpointer user_data); +static gboolean filter_list_entry_focus_in_cb(GtkWidget *widget, GdkEvent *event, gpointer user_data); static void -load_blacklist(IndicatorNotificationsSettings *self) +load_filter_list(IndicatorNotificationsSettings *self) { - GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->blacklist_treeview))); + GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->filter_list_treeview))); GtkTreeIter iter; gchar **items; gtk_list_store_clear(list); - items = g_settings_get_strv(self->settings, NOTIFICATIONS_KEY_BLACKLIST); + items = g_settings_get_strv(self->settings, NOTIFICATIONS_KEY_FILTER_LIST); for (int i = 0; items[i] != NULL; i++) { gtk_list_store_append(list, &iter); @@ -78,16 +78,16 @@ load_blacklist(IndicatorNotificationsSettings *self) } static void -load_blacklist_hints(IndicatorNotificationsSettings *self) +load_filter_list_hints(IndicatorNotificationsSettings *self) { - GtkEntryCompletion *completion = gtk_entry_get_completion(GTK_ENTRY(self->blacklist_entry)); + GtkEntryCompletion *completion = gtk_entry_get_completion(GTK_ENTRY(self->filter_list_entry)); GtkListStore *list = GTK_LIST_STORE(gtk_entry_completion_get_model(completion)); GtkTreeIter iter; gchar **items; gtk_list_store_clear(list); - items = g_settings_get_strv(self->settings, NOTIFICATIONS_KEY_BLACKLIST_HINTS); + items = g_settings_get_strv(self->settings, NOTIFICATIONS_KEY_FILTER_LIST_HINTS); for (int i = 0; items[i] != NULL; i++) { gtk_list_store_append(list, &iter); @@ -98,19 +98,19 @@ load_blacklist_hints(IndicatorNotificationsSettings *self) } static void -save_blacklist(IndicatorNotificationsSettings *self) +save_filter_list(IndicatorNotificationsSettings *self) { - GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->blacklist_treeview))); + GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->filter_list_treeview))); gchar **items; - /* build an array of the blacklist items */ + /* build an array of the filter list items */ self->array = g_ptr_array_new(); gtk_tree_model_foreach(GTK_TREE_MODEL(list), foreach_build_array, self); g_ptr_array_add(self->array, NULL); items = (gchar **) g_ptr_array_free(self->array, FALSE); self->array = NULL; - g_settings_set_strv(self->settings, NOTIFICATIONS_KEY_BLACKLIST, (const gchar **) items); + g_settings_set_strv(self->settings, NOTIFICATIONS_KEY_FILTER_LIST, (const gchar **) items); g_strfreev(items); } @@ -148,14 +148,14 @@ foreach_build_array(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, g } static void -blacklist_add_clicked_cb(GtkButton *button, gpointer user_data) +filter_list_add_clicked_cb(GtkButton *button, gpointer user_data) { IndicatorNotificationsSettings *self = (IndicatorNotificationsSettings *) user_data; - GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->blacklist_treeview))); + GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->filter_list_treeview))); GtkTreeIter iter; /* strip off the leading and trailing whitespace in case of user error */ - self->text = g_strdup(gtk_entry_get_text(GTK_ENTRY(self->blacklist_entry))); + self->text = g_strdup(gtk_entry_get_text(GTK_ENTRY(self->filter_list_entry))); g_strstrip(self->text); if (strlen(self->text) > 0) { @@ -166,12 +166,12 @@ blacklist_add_clicked_cb(GtkButton *button, gpointer user_data) if (self->result == FALSE) { gtk_list_store_append(list, &iter); gtk_list_store_set(list, &iter, COLUMN_APPNAME, self->text, -1); - save_blacklist(self); + save_filter_list(self); } } /* clear the entry */ - gtk_entry_set_text(GTK_ENTRY(self->blacklist_entry), ""); + gtk_entry_set_text(GTK_ENTRY(self->filter_list_entry), ""); /* cleanup text */ g_free(self->text); @@ -179,19 +179,19 @@ blacklist_add_clicked_cb(GtkButton *button, gpointer user_data) } static void -blacklist_remove_clicked_cb(GtkButton *button, gpointer user_data) +filter_list_remove_clicked_cb(GtkButton *button, gpointer user_data) { IndicatorNotificationsSettings *self = (IndicatorNotificationsSettings *) user_data; - GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->blacklist_treeview))); + GtkListStore *list = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(self->filter_list_treeview))); GtkTreeIter iter; GtkTreeSelection *selection; - selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(self->blacklist_treeview)); + selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(self->filter_list_treeview)); if (gtk_tree_selection_get_selected(selection, NULL, &iter) == TRUE) { gtk_list_store_remove(list, &iter); - save_blacklist(self); + save_filter_list(self); } } @@ -214,10 +214,10 @@ max_items_changed_cb(GtkSpinButton *button, gpointer user_data) } static gboolean -blacklist_entry_focus_in_cb(GtkWidget *widget, GdkEvent *event, gpointer user_data) +filter_list_entry_focus_in_cb(GtkWidget *widget, GdkEvent *event, gpointer user_data) { IndicatorNotificationsSettings *self = (IndicatorNotificationsSettings *) user_data; - load_blacklist_hints(self); + load_filter_list_hints(self); g_signal_emit_by_name(widget, "changed", NULL); return FALSE; } @@ -234,14 +234,14 @@ indicator_notifications_settings_activate(GApplication *app) GtkWidget *button_swap_clr_s; GtkWidget *spin; GtkWidget *spin_label; - GtkWidget *blacklist_label; - GtkListStore *blacklist_list; - GtkWidget *blacklist_scroll; + GtkWidget *filter_list_label; + GtkListStore *filter_list_list; + GtkWidget *filter_list_scroll; GtkTreeViewColumn *column; GtkCellRenderer *renderer; GtkWidget *hbox; - GtkWidget *button_blacklist_rem; - GtkWidget *button_blacklist_add; + GtkWidget *button_filter_list_rem; + GtkWidget *button_filter_list_add; GtkEntryCompletion *entry_completion; GtkListStore *entry_list; @@ -323,55 +323,55 @@ indicator_notifications_settings_activate(GApplication *app) gtk_box_pack_start(GTK_BOX(vbox), spin, FALSE, FALSE, 4); gtk_widget_show(spin); - /* blacklist */ - blacklist_label = gtk_label_new(_("Discard notifications by application name")); - gtk_box_pack_start(GTK_BOX(vbox), blacklist_label, FALSE, FALSE, 4); - gtk_widget_show(blacklist_label); + /* filter-list */ + filter_list_label = gtk_label_new(_("Discard notifications by application name")); + gtk_box_pack_start(GTK_BOX(vbox), filter_list_label, FALSE, FALSE, 4); + gtk_widget_show(filter_list_label); - blacklist_scroll = gtk_scrolled_window_new(NULL, NULL); - gtk_box_pack_start(GTK_BOX(vbox), blacklist_scroll, TRUE, TRUE, 4); - gtk_widget_show(blacklist_scroll); + filter_list_scroll = gtk_scrolled_window_new(NULL, NULL); + gtk_box_pack_start(GTK_BOX(vbox), filter_list_scroll, TRUE, TRUE, 4); + gtk_widget_show(filter_list_scroll); - blacklist_list = gtk_list_store_new(1, G_TYPE_STRING); + filter_list_list = gtk_list_store_new(1, G_TYPE_STRING); renderer = gtk_cell_renderer_text_new(); column = gtk_tree_view_column_new_with_attributes("appname", renderer, "text", COLUMN_APPNAME, NULL); - self->blacklist_treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(blacklist_list)); - g_object_unref(blacklist_list); - gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(self->blacklist_treeview), FALSE); - gtk_tree_view_append_column(GTK_TREE_VIEW(self->blacklist_treeview), column); - load_blacklist(self); - gtk_container_add(GTK_CONTAINER(blacklist_scroll), self->blacklist_treeview); - gtk_widget_show(self->blacklist_treeview); + self->filter_list_treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(filter_list_list)); + g_object_unref(filter_list_list); + gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(self->filter_list_treeview), FALSE); + gtk_tree_view_append_column(GTK_TREE_VIEW(self->filter_list_treeview), column); + load_filter_list(self); + gtk_container_add(GTK_CONTAINER(filter_list_scroll), self->filter_list_treeview); + gtk_widget_show(self->filter_list_treeview); hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); gtk_widget_show(hbox); - button_blacklist_rem = gtk_button_new_with_label(_("Remove")); - g_signal_connect(button_blacklist_rem, "clicked", G_CALLBACK(blacklist_remove_clicked_cb), self); - gtk_box_pack_start(GTK_BOX(hbox), button_blacklist_rem, FALSE, FALSE, 2); - gtk_widget_show(button_blacklist_rem); + button_filter_list_rem = gtk_button_new_with_label(_("Remove")); + g_signal_connect(button_filter_list_rem, "clicked", G_CALLBACK(filter_list_remove_clicked_cb), self); + gtk_box_pack_start(GTK_BOX(hbox), button_filter_list_rem, FALSE, FALSE, 2); + gtk_widget_show(button_filter_list_rem); - button_blacklist_add = gtk_button_new_with_label(_("Add")); - g_signal_connect(button_blacklist_add, "clicked", G_CALLBACK(blacklist_add_clicked_cb), self); - gtk_box_pack_start(GTK_BOX(hbox), button_blacklist_add, FALSE, FALSE, 2); - gtk_widget_show(button_blacklist_add); + button_filter_list_add = gtk_button_new_with_label(_("Add")); + g_signal_connect(button_filter_list_add, "clicked", G_CALLBACK(filter_list_add_clicked_cb), self); + gtk_box_pack_start(GTK_BOX(hbox), button_filter_list_add, FALSE, FALSE, 2); + gtk_widget_show(button_filter_list_add); - self->blacklist_entry = gtk_entry_new(); - gtk_box_pack_start(GTK_BOX(hbox), self->blacklist_entry, TRUE, TRUE, 0); - gtk_widget_show(self->blacklist_entry); + self->filter_list_entry = gtk_entry_new(); + gtk_box_pack_start(GTK_BOX(hbox), self->filter_list_entry, TRUE, TRUE, 0); + gtk_widget_show(self->filter_list_entry); entry_completion = gtk_entry_completion_new(); entry_list = gtk_list_store_new(1, G_TYPE_STRING); gtk_entry_completion_set_model(entry_completion, GTK_TREE_MODEL(entry_list)); gtk_entry_completion_set_text_column(entry_completion, 0); gtk_entry_completion_set_minimum_key_length(entry_completion, 0); - gtk_entry_set_completion(GTK_ENTRY(self->blacklist_entry), entry_completion); + gtk_entry_set_completion(GTK_ENTRY(self->filter_list_entry), entry_completion); /* When we focus the entry, emit the changed signal so we get the hints immediately */ - /* also update the blacklist hints from gsettings */ - g_signal_connect(self->blacklist_entry, "focus-in-event", G_CALLBACK(blacklist_entry_focus_in_cb), self); + /* also update the filter list hints from gsettings */ + g_signal_connect(self->filter_list_entry, "focus-in-event", G_CALLBACK(filter_list_entry_focus_in_cb), self); } static void diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index 67dcb96..e5f2951 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -77,9 +77,9 @@ struct _IndicatorNotificationsPrivate { DBusSpy *spy; - GHashTable *blacklist; + GHashTable *filter_list; - GList *blacklist_hints; + GList *filter_list_hints; GSettings *settings; }; @@ -117,12 +117,12 @@ static void insert_menuitem(IndicatorNotifications *self, GtkWidget *item); static void remove_menuitem(IndicatorNotifications *self, GtkWidget *item); static void set_unread(IndicatorNotifications *self, gboolean unread); static void update_unread(IndicatorNotifications *self); -static void update_blacklist(IndicatorNotifications *self); +static void update_filter_list(IndicatorNotifications *self); static void update_clear_item_markup(IndicatorNotifications *self); static void update_indicator_visibility(IndicatorNotifications *self); -static void load_blacklist_hints(IndicatorNotifications *self); -static void save_blacklist_hints(IndicatorNotifications *self); -static void update_blacklist_hints(IndicatorNotifications *self, Notification *notification); +static void load_filter_list_hints(IndicatorNotifications *self); +static void save_filter_list_hints(IndicatorNotifications *self); +static void update_filter_list_hints(IndicatorNotifications *self, Notification *notification); static void update_do_not_disturb(IndicatorNotifications *self); static void settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value); static void swap_clear_settings_items(IndicatorNotifications *self); @@ -208,8 +208,8 @@ indicator_notifications_init(IndicatorNotifications *self) self->priv->spy = dbus_spy_new(); g_signal_connect(self->priv->spy, DBUS_SPY_SIGNAL_MESSAGE_RECEIVED, G_CALLBACK(message_received_cb), self); - /* Initialize an empty blacklist */ - self->priv->blacklist = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); + /* Initialize an empty filter list */ + self->priv->filter_list = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); /* Connect to GSettings */ self->priv->settings = g_settings_new(NOTIFICATIONS_SCHEMA); @@ -217,15 +217,15 @@ indicator_notifications_init(IndicatorNotifications *self) self->priv->do_not_disturb = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_DND); self->priv->hide_indicator = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_HIDE_INDICATOR); self->priv->max_items = g_settings_get_int(self->priv->settings, NOTIFICATIONS_KEY_MAX_ITEMS); - update_blacklist(self); + update_filter_list(self); self->priv->swap_clear_settings = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS); if(self->priv->swap_clear_settings) swap_clear_settings_items(self); g_signal_connect(self->priv->settings, "changed", G_CALLBACK(setting_changed_cb), self); - /* Set up blacklist hints */ - self->priv->blacklist_hints = NULL; - load_blacklist_hints(self); + /* Set up filter-list hints */ + self->priv->filter_list_hints = NULL; + load_filter_list_hints(self); } static void @@ -263,14 +263,14 @@ indicator_notifications_dispose(GObject *object) self->priv->settings = NULL; } - if(self->priv->blacklist != NULL) { - g_hash_table_unref(self->priv->blacklist); - self->priv->blacklist = NULL; + if(self->priv->filter_list != NULL) { + g_hash_table_unref(self->priv->filter_list); + self->priv->filter_list = NULL; } - if(self->priv->blacklist_hints != NULL) { - g_list_free_full(self->priv->blacklist_hints, g_free); - self->priv->blacklist_hints = NULL; + if(self->priv->filter_list_hints != NULL) { + g_list_free_full(self->priv->filter_list_hints, g_free); + self->priv->filter_list_hints = NULL; } G_OBJECT_CLASS (indicator_notifications_parent_class)->dispose (object); @@ -480,24 +480,24 @@ update_unread(IndicatorNotifications *self) } /** - * update_blacklist: + * update_filter_list: * @self: the indicator object * - * Updates the blacklist from GSettings. This currently does not filter already + * Updates the filter list from GSettings. This currently does not filter already * allowed messages. It only applies to messages received in the future. **/ static void -update_blacklist(IndicatorNotifications *self) +update_filter_list(IndicatorNotifications *self) { g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); - g_return_if_fail(self->priv->blacklist != NULL); + g_return_if_fail(self->priv->filter_list != NULL); - g_hash_table_remove_all(self->priv->blacklist); - gchar **items = g_settings_get_strv(self->priv->settings, NOTIFICATIONS_KEY_BLACKLIST); + g_hash_table_remove_all(self->priv->filter_list); + gchar **items = g_settings_get_strv(self->priv->settings, NOTIFICATIONS_KEY_FILTER_LIST); int i; for(i = 0; items[i] != NULL; i++) { - g_hash_table_insert(self->priv->blacklist, g_strdup(items[i]), NULL); + g_hash_table_insert(self->priv->filter_list, g_strdup(items[i]), NULL); } g_strfreev(items); @@ -553,35 +553,35 @@ update_indicator_visibility(IndicatorNotifications *self) } /** - * load_blacklist_hints: + * load_filter_list_hints: * @self: the indicator object * - * Loads the blacklist hints from gsettings + * Loads the filter list hints from gsettings **/ static void -load_blacklist_hints(IndicatorNotifications *self) +load_filter_list_hints(IndicatorNotifications *self) { g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); - g_return_if_fail(self->priv->blacklist_hints == NULL); + g_return_if_fail(self->priv->filter_list_hints == NULL); - gchar **items = g_settings_get_strv(self->priv->settings, NOTIFICATIONS_KEY_BLACKLIST_HINTS); + gchar **items = g_settings_get_strv(self->priv->settings, NOTIFICATIONS_KEY_FILTER_LIST_HINTS); int i; for (i = 0; items[i] != NULL; i++) { - self->priv->blacklist_hints = g_list_prepend(self->priv->blacklist_hints, items[i]); + self->priv->filter_list_hints = g_list_prepend(self->priv->filter_list_hints, items[i]); } g_free(items); } /** - * save_blacklist_hints: + * save_filter_list_hints: * @self: the indicator object * - * Saves the blacklist hints to gsettings + * Saves the filter list hints to gsettings **/ static void -save_blacklist_hints(IndicatorNotifications *self) +save_filter_list_hints(IndicatorNotifications *self) { g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); @@ -589,23 +589,23 @@ save_blacklist_hints(IndicatorNotifications *self) int i = 0; GList *l; - for (l = self->priv->blacklist_hints; (l != NULL) && (i < HINT_MAX); l = l->next, i++) { + for (l = self->priv->filter_list_hints; (l != NULL) && (i < HINT_MAX); l = l->next, i++) { hints[i] = (gchar *) l->data; } hints[i] = NULL; - g_settings_set_strv(self->priv->settings, NOTIFICATIONS_KEY_BLACKLIST_HINTS, (const gchar **) hints); + g_settings_set_strv(self->priv->settings, NOTIFICATIONS_KEY_FILTER_LIST_HINTS, (const gchar **) hints); } /** - * update_blacklist_hints: + * update_filter_list_hints: * @self: the indicator object * * Adds an application name to the hints **/ static void -update_blacklist_hints(IndicatorNotifications *self, Notification *notification) +update_filter_list_hints(IndicatorNotifications *self, Notification *notification) { g_return_if_fail(IS_INDICATOR_NOTIFICATIONS(self)); g_return_if_fail(IS_NOTIFICATION(notification)); @@ -614,24 +614,24 @@ update_blacklist_hints(IndicatorNotifications *self, Notification *notification) /* Avoid duplicates */ GList *l; - for (l = self->priv->blacklist_hints; l != NULL; l = l->next) { + for (l = self->priv->filter_list_hints; l != NULL; l = l->next) { if (g_strcmp0(appname, (const gchar *) l->data) == 0) return; } /* Add the appname */ - self->priv->blacklist_hints = g_list_prepend(self->priv->blacklist_hints, g_strdup(appname)); + self->priv->filter_list_hints = g_list_prepend(self->priv->filter_list_hints, g_strdup(appname)); /* Keep only a reasonable number */ - while (g_list_length(self->priv->blacklist_hints) > HINT_MAX) { - GList *last = g_list_last(self->priv->blacklist_hints); + while (g_list_length(self->priv->filter_list_hints) > HINT_MAX) { + GList *last = g_list_last(self->priv->filter_list_hints); g_free(last->data); - self->priv->blacklist_hints = g_list_delete_link(self->priv->blacklist_hints, last); + self->priv->filter_list_hints = g_list_delete_link(self->priv->filter_list_hints, last); } /* Save the hints */ /* FIXME: maybe don't do this every update */ - save_blacklist_hints(self); + save_filter_list_hints(self); } /** @@ -786,8 +786,8 @@ setting_changed_cb(GSettings *settings, gchar *key, gpointer user_data) else if(g_strcmp0(key, NOTIFICATIONS_KEY_CLEAR_MC) == 0) { self->priv->clear_on_middle_click = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_CLEAR_MC); } - else if(g_strcmp0(key, NOTIFICATIONS_KEY_BLACKLIST) == 0) { - update_blacklist(self); + else if(g_strcmp0(key, NOTIFICATIONS_KEY_FILTER_LIST) == 0) { + update_filter_list(self); } else if(g_strcmp0(key, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS) == 0) { self->priv->swap_clear_settings = g_settings_get_boolean(self->priv->settings, NOTIFICATIONS_KEY_SWAP_CLEAR_SETTINGS); @@ -847,15 +847,15 @@ message_received_cb(DBusSpy *spy, Notification *note, gpointer user_data) return; } - /* Discard notifications on the blacklist */ - if(self->priv->blacklist != NULL && g_hash_table_contains(self->priv->blacklist, + /* Discard notifications on the filter list */ + if(self->priv->filter_list != NULL && g_hash_table_contains(self->priv->filter_list, notification_get_app_name(note))) { g_object_unref(note); return; } /* Save a hint for the appname */ - update_blacklist_hints(self, note); + update_filter_list_hints(self, note); /* Create the menuitem */ GtkWidget *item = notification_menuitem_new(); diff --git a/src/settings.h b/src/settings.h index 4eb0030..43f0383 100644 --- a/src/settings.h +++ b/src/settings.h @@ -6,8 +6,8 @@ #define __SETTINGS_H__ #define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications" -#define NOTIFICATIONS_KEY_BLACKLIST "blacklist" -#define NOTIFICATIONS_KEY_BLACKLIST_HINTS "blacklist-hints" +#define NOTIFICATIONS_KEY_BLACKLIST "filter-list" +#define NOTIFICATIONS_KEY_BLACKLIST_HINTS "filter-list-hints" #define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" #define NOTIFICATIONS_KEY_DND "do-not-disturb" #define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" -- cgit v1.2.3 From ab788386e4d79b0199741388e55d8a4032f6e9cc Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Fri, 21 Aug 2020 14:58:52 +0200 Subject: src/indicator-notifications: settings_try_set_boolean(): Enable the recursive schema lookup so we have a better chance of finding it. --- src/indicator-notifications.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index e5f2951..56ddd7a 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -670,7 +670,7 @@ settings_try_set_boolean(const gchar *schema, const gchar *key, gboolean value) } /* Lookup the schema */ - GSettingsSchema *source_schema = g_settings_schema_source_lookup(source, schema, FALSE); + GSettingsSchema *source_schema = g_settings_schema_source_lookup(source, schema, TRUE); /* Couldn't find the schema */ if (source_schema == NULL) { -- cgit v1.2.3 From d50e5a3a331fcf14c9b06da7fdce443eacecd1de Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Thu, 20 Aug 2020 14:08:43 +0200 Subject: Update translation files (for blacklist/filter-list renaming and do-not-disturb feature). --- po/af.po | 50 +++++++++++++++++----------- po/am.po | 46 +++++++++++++++----------- po/an.po | 46 +++++++++++++++----------- po/ar.po | 50 +++++++++++++++++----------- po/ast.po | 46 +++++++++++++++----------- po/ayatana-indicator-notifications.pot | 46 +++++++++++++++----------- po/az.po | 46 +++++++++++++++----------- po/be.po | 45 ++++++++++++++++---------- po/bem.po | 46 +++++++++++++++----------- po/bg.po | 46 +++++++++++++++----------- po/bn.po | 46 +++++++++++++++----------- po/bo.po | 46 +++++++++++++++----------- po/br.po | 46 +++++++++++++++----------- po/bs.po | 46 +++++++++++++++----------- po/ca.po | 49 +++++++++++++++++----------- po/ca@valencia.po | 46 +++++++++++++++----------- po/ce.po | 46 +++++++++++++++----------- po/ckb.po | 46 +++++++++++++++----------- po/co.po | 46 +++++++++++++++----------- po/crh.po | 46 +++++++++++++++----------- po/cs.po | 46 ++++++++++++++++---------- po/cv.po | 46 +++++++++++++++----------- po/cy.po | 46 +++++++++++++++----------- po/da.po | 48 ++++++++++++++++----------- po/de.po | 50 +++++++++++++++++----------- po/el.po | 46 ++++++++++++++++---------- po/en_AU.po | 46 ++++++++++++++++---------- po/en_CA.po | 50 +++++++++++++++++----------- po/en_GB.po | 46 ++++++++++++++++---------- po/eo.po | 46 +++++++++++++++----------- po/es.po | 50 +++++++++++++++++----------- po/et.po | 50 +++++++++++++++++----------- po/eu.po | 46 +++++++++++++++----------- po/fa.po | 56 +++++++++++++++++++------------- po/fi.po | 46 +++++++++++++++----------- po/fil.po | 46 +++++++++++++++----------- po/fo.po | 46 +++++++++++++++----------- po/fr.po | 50 +++++++++++++++++----------- po/fr_CA.po | 50 +++++++++++++++++----------- po/frp.po | 46 +++++++++++++++----------- po/fy.po | 46 +++++++++++++++----------- po/ga.po | 46 +++++++++++++++----------- po/gd.po | 46 +++++++++++++++----------- po/gl.po | 45 ++++++++++++++++---------- po/gu.po | 46 +++++++++++++++----------- po/he.po | 45 ++++++++++++++++---------- po/hi.po | 46 +++++++++++++++----------- po/hr.po | 54 +++++++++++++++++++------------ po/ht.po | 46 +++++++++++++++----------- po/hu.po | 51 +++++++++++++++++------------ po/hy.po | 48 ++++++++++++++++----------- po/ia.po | 46 +++++++++++++++----------- po/id.po | 46 +++++++++++++++----------- po/is.po | 46 +++++++++++++++----------- po/it.po | 50 +++++++++++++++++----------- po/ja.po | 59 +++++++++++++++++++++------------- po/ka.po | 46 +++++++++++++++----------- po/kk.po | 46 +++++++++++++++----------- po/kl.po | 46 +++++++++++++++----------- po/km.po | 46 +++++++++++++++----------- po/kn.po | 46 +++++++++++++++----------- po/ko.po | 58 ++++++++++++++++++++------------- po/ku.po | 46 +++++++++++++++----------- po/kw.po | 46 +++++++++++++++----------- po/ky.po | 46 +++++++++++++++----------- po/la.po | 46 +++++++++++++++----------- po/lb.po | 46 +++++++++++++++----------- po/lo.po | 46 +++++++++++++++----------- po/lt.po | 50 +++++++++++++++++----------- po/lv.po | 46 +++++++++++++++----------- po/mg.po | 46 +++++++++++++++----------- po/mhr.po | 46 +++++++++++++++----------- po/mi.po | 46 +++++++++++++++----------- po/ml.po | 46 +++++++++++++++----------- po/mr.po | 46 +++++++++++++++----------- po/ms.po | 46 +++++++++++++++----------- po/my.po | 46 +++++++++++++++----------- po/nb.po | 50 +++++++++++++++++----------- po/ne.po | 46 +++++++++++++++----------- po/nl.po | 46 ++++++++++++++++---------- po/nn.po | 46 +++++++++++++++----------- po/oc.po | 49 +++++++++++++++++----------- po/os.po | 46 +++++++++++++++----------- po/pa.po | 46 +++++++++++++++----------- po/pl.po | 50 +++++++++++++++++----------- po/ps.po | 46 +++++++++++++++----------- po/pt.po | 50 +++++++++++++++++----------- po/pt_BR.po | 46 ++++++++++++++++---------- po/ro.po | 50 +++++++++++++++++----------- po/ru.po | 54 +++++++++++++++++++------------ po/sa.po | 46 +++++++++++++++----------- po/sc.po | 46 +++++++++++++++----------- po/sd.po | 46 +++++++++++++++----------- po/se.po | 46 +++++++++++++++----------- po/shn.po | 46 +++++++++++++++----------- po/si.po | 46 +++++++++++++++----------- po/sk.po | 50 +++++++++++++++++----------- po/sl.po | 46 +++++++++++++++----------- po/sq.po | 49 +++++++++++++++++----------- po/sr.po | 46 +++++++++++++++----------- po/sv.po | 50 +++++++++++++++++----------- po/sw.po | 46 +++++++++++++++----------- po/szl.po | 46 +++++++++++++++----------- po/ta.po | 44 +++++++++++++++---------- po/te.po | 44 +++++++++++++++---------- po/tg.po | 46 +++++++++++++++----------- po/th.po | 46 +++++++++++++++----------- po/ti.po | 46 +++++++++++++++----------- po/tr.po | 50 +++++++++++++++++----------- po/ug.po | 50 +++++++++++++++++----------- po/uk.po | 50 +++++++++++++++++----------- po/ur.po | 46 +++++++++++++++----------- po/uz.po | 46 +++++++++++++++----------- po/vi.po | 46 +++++++++++++++----------- po/wae.po | 46 +++++++++++++++----------- po/zh_CN.po | 50 +++++++++++++++++----------- po/zh_HK.po | 46 +++++++++++++++----------- po/zh_TW.po | 45 ++++++++++++++++---------- src/settings.h | 4 +-- 119 files changed, 3415 insertions(+), 2158 deletions(-) diff --git a/po/af.po b/po/af.po index 48f27af..40fab39 100644 --- a/po/af.po +++ b/po/af.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:15+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-05-10 08:12+0000\n" "Last-Translator: iNetRoos \n" -"Language-Team: Afrikaans \n" +"Language-Team: Afrikaans \n" "Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Vermeldings uitvee op grond van toepassingsnaam" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Alle kennisgewings vanaf toepassingname wat op die swartlys verskyn, word " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Middel-muiskliek vee kennisgewings uit" @@ -69,16 +70,17 @@ msgstr "" "Die indikator sal kennisgewings vertoon, beperk tot die maksimum aantal hier " "aangedui." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Kennisgewings" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Skep die kieslys item: instellings." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Vee (%d Kennisgewing) uit" msgstr[1] "Vee (%d Kennisgewings) uit" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Instellings vir Indikator Kennisgewings" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Versteek-indikator" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maksimum aantal sigbare kennisgewings" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Verwyder" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Bywerk" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "van" diff --git a/po/am.po b/po/am.po index 2f7c71c..ea4cd08 100644 --- a/po/am.po +++ b/po/am.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:15+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: am\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/an.po b/po/an.po index 267b819..8b9fee3 100644 --- a/po/an.po +++ b/po/an.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:15+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: an\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ar.po b/po/ar.po index 6babeb2..c3814d7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-03-15 05:36+0000\n" "Last-Translator: yagoub fadel \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" @@ -20,15 +20,16 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "تجاهل الإخطارات حسب اسم التطبيق" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "إذا كان اسم التطبيق في القائمة السوداء ، فسيتم تجاهل جميع الإشعارات التي " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -68,16 +69,17 @@ msgid "" "indicated by this value." msgstr "سيعرض المؤشر فقط عدد الإشعارات المشار إليها بهذه القيمة فقط." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "إشعارات" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "الإعدادات..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -89,31 +91,41 @@ msgstr[4] "" msgstr[5] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "إعدادات إخطارات المؤشر" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "إخفاء المؤشر" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "الحد الأقصى لعدد الإشعارات المرئية" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "إزالة" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "اضافة" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ast.po b/po/ast.po index d00d98d..dc7fe25 100644 --- a/po/ast.po +++ b/po/ast.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ast\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ayatana-indicator-notifications.pot b/po/ayatana-indicator-notifications.pot index b7e82e7..eddf981 100644 --- a/po/ayatana-indicator-notifications.pot +++ b/po/ayatana-indicator-notifications.pot @@ -8,31 +8,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:15+0200\n" +"POT-Creation-Date: 2020-08-21 14:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -61,16 +61,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -78,31 +78,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/az.po b/po/az.po index c87cb71..284a1f4 100644 --- a/po/az.po +++ b/po/az.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: az\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/be.po b/po/be.po index 4f2d9a4..95605f9 100644 --- a/po/be.po +++ b/po/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-18 21:53+0000\n" "Last-Translator: Viktar Vauchkevich \n" "Language-Team: Belarusian =20) ? 1 : 2;\n" "X-Generator: Weblate 2.18\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Адкінуць апавяшчэнні па імені прыкладання" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Калі імя пракладання ў чорным спісе, усе апавяшчэнні, што адпавядаюць, " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Ачысціць апавяшчэнні сярэдняй кнопкай" @@ -70,16 +71,16 @@ msgstr "" "Індыкатар будзе адлюстроўваць не больш за заданую гэтым значэннем колькасць " "апавяшчэнняў." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Апавяшчэнні" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -88,33 +89,43 @@ msgstr[1] "Ачысць (%d апавяшчэнні)" msgstr[2] "Ачысць (%d апавяшчэнняў)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 #, fuzzy msgid "Hide indicator" msgstr "Схаваць індыкатар" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "Максімальная колькасць бачных элементаў" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "з" diff --git a/po/bem.po b/po/bem.po index d7f46b1..ec23bab 100644 --- a/po/bem.po +++ b/po/bem.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bem\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/bg.po b/po/bg.po index a91f16a..b2e06bc 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bg\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" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/bn.po b/po/bn.po index 8d4fbd2..0b868da 100644 --- a/po/bn.po +++ b/po/bn.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bn\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/bo.po b/po/bo.po index 3fd5822..e3a0604 100644 --- a/po/bo.po +++ b/po/bo.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bo\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/br.po b/po/br.po index ab681a3..ea89b37 100644 --- a/po/br.po +++ b/po/br.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: br\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/bs.po b/po/bs.po index 799a5cc..0e346fe 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bs\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ca.po b/po/ca.po index 2e99dfc..a4fba38 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-03-27 18:46+0000\n" "Last-Translator: Adolfo Jayme Barrientos \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" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Descarta les notificacions per nom d'aplicació" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Si el nom d'una aplicació és a la llista negra, es descartaran totes les " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Neteja les notificacions amb un clic central" @@ -64,16 +65,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notificacions" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -81,31 +82,41 @@ msgstr[0] "Neteja (%d notificació)" msgstr[1] "Neteja (%d notificacions)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Amaga l'indicador" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Nombre màxim de notificacions visibles" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Treu" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Afegeix" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ca@valencia.po b/po/ca@valencia.po index 0e43767..4c661e0 100644 --- a/po/ca@valencia.po +++ b/po/ca@valencia.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ca@valencia\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ce.po b/po/ce.po index dc62578..f7d5fcb 100644 --- a/po/ce.po +++ b/po/ce.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ce\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ckb.po b/po/ckb.po index 592306a..fad5138 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ckb\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/co.po b/po/co.po index 6e8c01b..46ac95f 100644 --- a/po/co.po +++ b/po/co.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: co\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/crh.po b/po/crh.po index 10e90cf..33d06d0 100644 --- a/po/crh.po +++ b/po/crh.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: crh\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/cs.po b/po/cs.po index d8bddb4..1c60210 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-03-06 11:33+0000\n" "Last-Translator: Zdeněk Klauda \n" "Language-Team: Czech =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Zahazovat oznámení na základě názvu aplikace" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Pokud je název aplikace na seznamu vyloučených, všechna oznámení s " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Vyčistit oznámení při kliknutím prostředním tlačítkem myši" @@ -69,16 +70,17 @@ msgstr "" "Indikátor zobrazí nejvýše takový počet oznámení, který je stanoven touto " "hodnotou." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Oznámení" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Nastavení..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -87,33 +89,43 @@ msgstr[1] "Vyčistit (%d oznámení)" msgstr[2] "Vyčistit (%d oznámení)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Nastavení oznámení indikátorů" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 #, fuzzy msgid "Hide indicator" msgstr "Skrýt indikátor" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "Nejvyšší nastavený počet viditelných položek" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Odstranit" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Přidat" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "z" diff --git a/po/cv.po b/po/cv.po index 1ffbd96..f9f7f1f 100644 --- a/po/cv.po +++ b/po/cv.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: cv\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/cy.po b/po/cy.po index 9e739dc..021901b 100644 --- a/po/cy.po +++ b/po/cy.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: cy\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/da.po b/po/da.po index c7d51c5..cbbde60 100644 --- a/po/da.po +++ b/po/da.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-07-04 23:41+0000\n" "Last-Translator: Tobias p \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" @@ -19,21 +19,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -62,16 +62,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notifikationer" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -79,31 +79,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/de.po b/po/de.po index f9c1a89..dee0ca5 100644 --- a/po/de.po +++ b/po/de.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-08-29 05:54+0000\n" "Last-Translator: Mike Gabriel \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Verwerfe Benachrichtigungen anhand des Anwendungsnamen" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Wenn ein Anwendungsname auf der schwarzen Liste steht, dann werden alle " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Benachrichtigungen löschen durch Klick auf mittlere Maustaste" @@ -70,16 +71,17 @@ msgstr "" "Der Indikator wird nur höchstens so viele Benachrichtigungen anzeigen, wie " "von diesem Wert festgelegt." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Benachrichtigungen" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Einstellungen..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -87,31 +89,41 @@ msgstr[0] "Liste leeren (%d Benachrichtigung)" msgstr[1] "Liste leeren (%d Benachrichtigungen)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Benachrichtigungs-Indikator Einstellungen" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Indikator verstecken" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximale Anzahl sichtbarer Benachrichtigungen" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Entfernen" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Hinzufügen" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "von" diff --git a/po/el.po b/po/el.po index cff4e02..8a737e9 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-17 16:11+0000\n" "Last-Translator: george k \n" "Language-Team: Greek (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Απαλοιφή (%d ειδοποίησης)" msgstr[1] "Απαλοιφή (%d ειδοποιήσεων)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Ρυθμίσεις ειδοποιήσεων ενδείξεων" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Απόκρυψη ένδειξης" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Μέγιστος αριθμός ορατών ειδοποιήσεων" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Αφαίρεση" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Προσθήκη" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "από" diff --git a/po/en_AU.po b/po/en_AU.po index 092ad72..1efffef 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-28 11:11+0000\n" "Last-Translator: Jeannette L \n" "Language-Team: English (Australia) (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Clear (%d Notification)" msgstr[1] "Clear (%d Notifications)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indicator Notifications Settings" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Hide indicator" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximum number of visible notifications" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Remove" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Add" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "from" diff --git a/po/en_CA.po b/po/en_CA.po index b784b94..a6a239e 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-28 11:11+0000\n" "Last-Translator: Jeannette L \n" -"Language-Team: English (Canada) \n" +"Language-Team: English (Canada) \n" "Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0.2\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Discard notifications by application name" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "If an application name is in the blacklist, all notifications matching the " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Clear notifications on middle click" @@ -69,16 +70,17 @@ msgstr "" "The indicator will only display at most the number of notifications " "indicated by this value." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notifications" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Settings..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Clear (%d Notification)" msgstr[1] "Clear (%d Notifications)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indicator Notifications Settings" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Hide indicator" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximum number of visible notifications" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Remove" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Add" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "from" diff --git a/po/en_GB.po b/po/en_GB.po index f93be9e..414c8cc 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-28 11:11+0000\n" "Last-Translator: Jeannette L \n" "Language-Team: English (United Kingdom) (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Clear (%d Notification)" msgstr[1] "Clear (%d Notifications)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indicator Notifications Settings" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Hide indicator" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximum number of visible notifications" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Remove" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Add" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "from" diff --git a/po/eo.po b/po/eo.po index b31bdb5..3d6b31a 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: eo\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" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/es.po b/po/es.po index 1bee35b..8375586 100644 --- a/po/es.po +++ b/po/es.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-09-08 18:24+0000\n" "Last-Translator: Abraham Roman \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" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Descartar notificaciones por nombre de aplicación" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Si un nombre de aplicación está en la lista negra, se descartarán todas las " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Vaciar las notificaciones con pulsación central" @@ -69,16 +70,17 @@ msgstr "" "El indicador mostrará como máximo la cantidad de notificaciones " "correspondiente a este valor." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notificaciones" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Configuraciones..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Vaciar (%d notificación)" msgstr[1] "Vaciar (%d notificaciones)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indicador De Notificaciones en Configuracion" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Ocultar Indicador" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Número máximo de elementos visibles" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Quitar" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Agregar" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "de" diff --git a/po/et.po b/po/et.po index a157dde..49bc3b4 100644 --- a/po/et.po +++ b/po/et.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-04 06:04+0000\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Kustuta teated rakenduselt nimega" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Kui rakendus on mustas nimekirjas, siis kustutatakse kõik teated, mis " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Puhasta teated keskmise klahvi klõpsuga" @@ -66,16 +67,17 @@ msgid "" "indicated by this value." msgstr "Indikaator ei kuva rohkem teateid, kui väärtusega määratud." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Teated" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Seaded..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -83,31 +85,41 @@ msgstr[0] "Puhasta (%d teade)" msgstr[1] "Puhasta (%d teadet)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indikaatori teavituste seaded" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Peida indikaator" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Kuvatavate teadete maksimaalne arv" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Eemalda" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Lisa" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "saatjalt" diff --git a/po/eu.po b/po/eu.po index 25112e1..908eaeb 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: eu\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/fa.po b/po/fa.po index d7ce848..99958b2 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-07-20 21:41+0000\n" "Last-Translator: Tetra Homer \n" -"Language-Team: Persian \n" +"Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.2-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "اعلان ها را بر اساس نام برنامه کنار بگذارید" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "اگر نام یک برنامه در لیست سیاه قرار داشته باشد، تمام اعلان های مطابق با نام " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "پاک کردن اعلان‌ها با دکمه وسطی موشواره" @@ -45,9 +46,9 @@ msgid "" "be toggled if the queue is not empty. With this option enabled, the " "notification queue will be cleared instead." msgstr "" -"معمولاً هنگام کلیک کردن دکمه وسطی موشواره روی نماد اعلان ، اگر صف خالی نباشد " -"، وضعیت خوانده نشده دگرگون می کند. با فعال کردن این گزینه، به جای آن ، صفحه " -"اعلان پاک می شود." +"معمولاً هنگام کلیک کردن دکمه وسطی موشواره روی نماد اعلان ، اگر صف خالی " +"نباشد ، وضعیت خوانده نشده دگرگون می کند. با فعال کردن این گزینه، به جای آن ، " +"صفحه اعلان پاک می شود." #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:5 msgid "Hide the indicator" @@ -69,16 +70,17 @@ msgstr "" "این نشانگر فقط حداکثر تعداد اعلان های نشان داده شده توسط این مقدار را نشان " "می دهد." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "اعلانات" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "تنظیمات…" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "پاک‌کردن (%d اعلان )" msgstr[1] "پاک‌کردن (%d اعلان‌ها )" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "تنظیمات اعلانات نشانگر" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "مخفی کردن نشانگر" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "حداکثر تعداد اعلانات قابل مشاهده" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "حذف" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "افزودن" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "از" diff --git a/po/fi.po b/po/fi.po index 9eee5b1..8e57718 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fi\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" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/fil.po b/po/fil.po index 28818a7..a418c7f 100644 --- a/po/fil.po +++ b/po/fil.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fil\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/fo.po b/po/fo.po index 3dfd043..497124c 100644 --- a/po/fo.po +++ b/po/fo.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fo\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" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/fr.po b/po/fr.po index fde0d04..d09dd27 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-16 00:11+0000\n" "Last-Translator: Jeannette L \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" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Trier les notifications par le nom de l'application" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Si le nom d'une application est sur la liste noire, toutes les notifications " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Effacer les notifications par un clic du milieu" @@ -69,16 +70,17 @@ msgstr "" "L'indicateur affichera seulement au maximum le nombre de notifications " "indiquées par cette valeur." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notifications" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Paramètres…" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Effacer (%d notification)" msgstr[1] "Effacer (%d notifications)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Paramètres de l'indicateur de notifications" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Masquer l'indicateur" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Nombre maximal de notifications visibles" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Enlever" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Ajouter" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "de" diff --git a/po/fr_CA.po b/po/fr_CA.po index 399a8ea..9efe462 100644 --- a/po/fr_CA.po +++ b/po/fr_CA.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-28 11:11+0000\n" "Last-Translator: Jeannette L \n" -"Language-Team: French (Canada) \n" +"Language-Team: French (Canada) \n" "Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.0.2\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Trier les notifications par le nom de l'application" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Si le nom d'une application est sur la liste noire, toutes les notifications " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Effacer les notifications par un clic du milieu" @@ -69,16 +70,17 @@ msgstr "" "L'indicateur affichera seulement au maximum le nombre de notifications " "indiquées par cette valeur." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notifications" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Paramètres…" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Effacer (%d notification)" msgstr[1] "Effacer (%d notifications)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Paramètres de l'indicateur de notifications" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Masquer l'indicateur" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Nombre maximal de notifications visibles" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Enlever" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Ajouter" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "de" diff --git a/po/frp.po b/po/frp.po index c2111f8..4c7d1b6 100644 --- a/po/frp.po +++ b/po/frp.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: frp\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/fy.po b/po/fy.po index 1fcb67b..b600b00 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fy\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ga.po b/po/ga.po index f3df195..51c2c1b 100644 --- a/po/ga.po +++ b/po/ga.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ga\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=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -78,31 +78,41 @@ msgstr[1] "" msgstr[2] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/gd.po b/po/gd.po index 7c65139..d6ce2cc 100644 --- a/po/gd.po +++ b/po/gd.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: gd\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/gl.po b/po/gl.po index 35683c3..1095afc 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2018-10-24 17:29+0000\n" "Last-Translator: Iván Seoane \n" "Language-Team: Galician (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,33 +87,43 @@ msgstr[0] "Limpar (%d notificación)" msgstr[1] "Limpar (%d notificacións)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 #, fuzzy msgid "Hide indicator" msgstr "Agocha-lo indicador" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "Número máximo de elementos visíbeis" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "dende" diff --git a/po/gu.po b/po/gu.po index 5e5ea70..c662645 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: gu\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/he.po b/po/he.po index 97ec29a..2d9dabf 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2018-08-06 21:38+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,33 +87,43 @@ msgstr[2] "סילוק (%d התראות)" msgstr[3] "סילוק (%d התראות)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 #, fuzzy msgid "Hide indicator" msgstr "הסתרת המחוון" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "מספר הפריטים הגלויים המרבי" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "מ־" diff --git a/po/hi.po b/po/hi.po index ac28f45..6fd94f6 100644 --- a/po/hi.po +++ b/po/hi.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: hi\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/hr.po b/po/hr.po index 75ef715..b16b815 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,28 +7,29 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-01-04 00:21+0000\n" "Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.10\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Odbaci obavijesti po imenu programa" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Ako je ime programa na popisu nepoželjnih, odbacit će se sve obavijesti koje " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Izbriši obavijesti srednjim klikom" @@ -70,16 +71,17 @@ msgstr "" "Indikator će prikazati samo onoliko obavijesti, koliko je naznačeno ovom " "vrijednošću." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Obavjesti" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Postavke …" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -88,31 +90,41 @@ msgstr[1] "Izbriši (%d obavijesti)" msgstr[2] "Izbriši (%d obavijesti)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Postavke obavijesti indikatora" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Sakrij indikatora" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maksimalni broj vidljivih obavijesti" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Ukloni" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Dodaj" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "od" diff --git a/po/ht.po b/po/ht.po index d58ffb6..1a0a8e3 100644 --- a/po/ht.po +++ b/po/ht.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ht\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/hu.po b/po/hu.po index e08f1a0..165c40a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-07-30 10:41+0000\n" "Last-Translator: Ács Zoltán \n" -"Language-Team: Hungarian \n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Értesítések elutasítása az alkalmazásnév alapján" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 #, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Ha egy alkalmazás neve rajta van a feketelistán, az összes értesítés amely " @@ -36,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Értesítések törlése középső kattintásra" @@ -67,50 +67,61 @@ msgstr "" "Az indikátor legfeljebb az ezen értékkel jelölt értesítések számát jeleníti " "meg." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Értesítések" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Beállítások..." -#: ../src/indicator-notifications.c:475 -#, c-format, fuzzy +#: ../src/indicator-notifications.c:522 +#, fuzzy, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" msgstr[0] "Törlés: (%d Értesítés)" msgstr[1] "Törlés: (%d Értesítés)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 #, fuzzy msgid "Indicator Notifications Settings" msgstr "Indikátor értesítések beállítása" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Indikátor elrejtése" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Látható értesítések maximális száma" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Eltávolítás" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Hozzáadás" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 #, fuzzy msgid "from" msgstr "ettől:" diff --git a/po/hy.po b/po/hy.po index c06dc62..7adf8de 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-02 21:09+0000\n" "Last-Translator: Davit Mayilyan \n" -"Language-Team: Armenian \n" +"Language-Team: Armenian \n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,21 +19,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "սև ցուցակ" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -62,16 +62,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Ծանուցումներ" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -79,31 +79,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ia.po b/po/ia.po index 6a4467b..7f3cb89 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ia\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/id.po b/po/id.po index 50fb3fd..79c2a26 100644 --- a/po/id.po +++ b/po/id.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: id\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/is.po b/po/is.po index 59e4d48..24bbdfb 100644 --- a/po/is.po +++ b/po/is.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: is\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/it.po b/po/it.po index 407786e..dc46535 100644 --- a/po/it.po +++ b/po/it.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-28 11:11+0000\n" "Last-Translator: Jeannette L \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" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0.2\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Elimina le notifiche in base al nome dell'applicazione" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Se il nome di un'applicazione è nella blacklist, tutte le notifiche " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Cancella le notifiche con un clic centrale" @@ -69,16 +70,17 @@ msgstr "" "L'indicatore visualizzerà al massimo il numero di notifiche indicate da " "questo valore." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notifiche" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Impostazioni..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Pulisci (%d Notifica)" msgstr[1] "Pulisci (%d Notifiche)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Impostazioni notifiche indicatori" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Nascondi indicatore" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Massimo numero di notifiche visibili" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Rimuovi" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Aggiungi" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "Da" diff --git a/po/ja.po b/po/ja.po index e2972d3..ba36e35 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-03-17 04:36+0000\n" "Last-Translator: Grace Guo \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" @@ -19,21 +19,24 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "アプリケーション名で通知を破棄する" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." -msgstr "アプリケーション名がブラックリストにある場合、アプリケーション名に一致するすべての通知は破棄されます。" +msgstr "" +"アプリケーション名がブラックリストにある場合、アプリケーション名に一致するす" +"べての通知は破棄されます。" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "中ボタンクリックで通知をクリアする" @@ -43,8 +46,9 @@ msgid "" "be toggled if the queue is not empty. With this option enabled, the " "notification queue will be cleared instead." msgstr "" -"通常、通知アイコンを中央クリックすると、キューが空でない場合、未読ステータスが切り替わります。 " -"このオプションを有効にすると、代わりに通知キューがクリアされます。" +"通常、通知アイコンを中央クリックすると、キューが空でない場合、未読ステータス" +"が切り替わります。 このオプションを有効にすると、代わりに通知キューがクリアさ" +"れます。" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:5 msgid "Hide the indicator" @@ -64,49 +68,60 @@ msgid "" "indicated by this value." msgstr "インジケーターは、この値で示される通知の数だけを表示します。" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "通知" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "設定..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" msgstr[0] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "インジケーター通知設定" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "インジケーターを非表示" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "表示可能な通知の最大数" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 #, fuzzy msgid "Remove" msgstr "削除する" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "追加する" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 #, fuzzy msgid "from" msgstr "から" diff --git a/po/ka.po b/po/ka.po index 240f0e6..0c38674 100644 --- a/po/ka.po +++ b/po/ka.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ka\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/kk.po b/po/kk.po index 4e1e7f7..b31d1f6 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: kk\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/kl.po b/po/kl.po index e429c0e..80dfb4a 100644 --- a/po/kl.po +++ b/po/kl.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: kl\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/km.po b/po/km.po index bb679b6..ae8c2de 100644 --- a/po/km.po +++ b/po/km.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: km\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/kn.po b/po/kn.po index ccbddc9..78509e9 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: kn\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ko.po b/po/ko.po index bc6bba4..9c81b88 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-06-15 04:41+0000\n" "Last-Translator: MarongHappy \n" -"Language-Team: Korean \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,21 +19,24 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.1-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "응용프로그램 이름별 알림 삭제" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." -msgstr "응용프로그램 이름이 블랙리스트에 있으면 응용프로그램 이름과 일치하는 모든 알림이 삭제됩니다." +msgstr "" +"응용프로그램 이름이 블랙리스트에 있으면 응용프로그램 이름과 일치하는 모든 알" +"림이 삭제됩니다." #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "가운데 클릭시 알림 지우기" @@ -43,8 +46,8 @@ msgid "" "be toggled if the queue is not empty. With this option enabled, the " "notification queue will be cleared instead." msgstr "" -"일반적으로 알림 아이콘을 중간 클릭할 때 대기열이 비어 있지 않으면 읽지 않은 상태로 전환됩니다. 이 옵션을 활성화하면 알림 대기열이 " -"대신 지워집니다." +"일반적으로 알림 아이콘을 중간 클릭할 때 대기열이 비어 있지 않으면 읽지 않은 " +"상태로 전환됩니다. 이 옵션을 활성화하면 알림 대기열이 대신 지워집니다." #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:5 msgid "Hide the indicator" @@ -64,47 +67,58 @@ msgid "" "indicated by this value." msgstr "표시기는 이 값으로 표시된 최대 알림 수만 표시합니다." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "알림" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "설정..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" msgstr[0] "지우기 (%d 알림)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "표시기 알림 설정" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "표시기 숨김" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "표시되는 알림의 최대 개수" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "제거" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "추가" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ku.po b/po/ku.po index 4bc4247..0036638 100644 --- a/po/ku.po +++ b/po/ku.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ku\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/kw.po b/po/kw.po index f171bcb..b1c0e80 100644 --- a/po/kw.po +++ b/po/kw.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: kw\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ky.po b/po/ky.po index f9cd738..420db10 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ky\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/la.po b/po/la.po index c6963d6..9edf16a 100644 --- a/po/la.po +++ b/po/la.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: la\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/lb.po b/po/lb.po index b4f3b47..afc4b0e 100644 --- a/po/lb.po +++ b/po/lb.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lb\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/lo.po b/po/lo.po index 558fd43..fdeef7d 100644 --- a/po/lo.po +++ b/po/lo.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lo\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/lt.po b/po/lt.po index 45b5e2b..e3d557e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-09-03 20:24+0000\n" "Last-Translator: Moo \n" -"Language-Team: Lithuanian \n" +"Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,15 +21,16 @@ msgstr "" "1 : 2);\n" "X-Generator: Weblate 3.9-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Atmesti pranešimus pagal programos pavadinimą" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Jei programa yra juodajame sąraše, tuomet visi programą atitinkantys " @@ -37,7 +38,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Išvalyti pranešimus, spustelėjus vidurinįjį pelės mygtuką" @@ -71,16 +72,17 @@ msgstr "" "Indikatorius daugiausiai rodys tiek pranešimų, kiek yra nurodyta šioje " "reikšmėje." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Pranešimai" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Nustatymai..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -89,31 +91,41 @@ msgstr[1] "Išvalyti (%d pranešimus)" msgstr[2] "Išvalyti (%d pranešimų)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indikatoriaus pranešimų nustatymai" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Slėpti indikatorių" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Didžiausias matomų pranešimų skaičius" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Šalinti" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Pridėti" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "iš" diff --git a/po/lv.po b/po/lv.po index 48e7aea..99b3aac 100644 --- a/po/lv.po +++ b/po/lv.po @@ -7,32 +7,32 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lv\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -61,16 +61,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -79,31 +79,41 @@ msgstr[1] "" msgstr[2] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/mg.po b/po/mg.po index 3fe9747..a9cf377 100644 --- a/po/mg.po +++ b/po/mg.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mg\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/mhr.po b/po/mhr.po index 26815c2..cef3d9b 100644 --- a/po/mhr.po +++ b/po/mhr.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mhr\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/mi.po b/po/mi.po index ca6bde7..0258811 100644 --- a/po/mi.po +++ b/po/mi.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mi\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ml.po b/po/ml.po index 288804a..d1db35c 100644 --- a/po/ml.po +++ b/po/ml.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ml\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/mr.po b/po/mr.po index 40841fd..60f13b2 100644 --- a/po/mr.po +++ b/po/mr.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mr\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ms.po b/po/ms.po index 4aec2a1..2580278 100644 --- a/po/ms.po +++ b/po/ms.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ms\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/my.po b/po/my.po index 94699d0..a7db1ef 100644 --- a/po/my.po +++ b/po/my.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: my\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/nb.po b/po/nb.po index a681937..5f86572 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-11-11 10:04+0000\n" "Last-Translator: Allan Nordhøy \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Avslå merknader etter programnavn" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Hvis et progamnavn er på svartelista, vil alle merknader som samsvarer med " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Tøm merknader ved midtklikk" @@ -69,16 +70,17 @@ msgstr "" "Indikatoren vil kun vise i meste fall antall merknader angitt av denne " "verdien." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Merknader" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Innstillinger..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,32 +88,42 @@ msgstr[0] "Tøm %d merknad)" msgstr[1] "Tøm %d merknader)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Merknadsinnstillinger for indikator" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Skjul indikatoren" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "Maksimer antall synlige elementer" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Fjern" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Legg til" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "fra" diff --git a/po/ne.po b/po/ne.po index d7aa561..11375b1 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ne\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/nl.po b/po/nl.po index 08251a2..d0b4c1b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-08-29 05:54+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "(%d melding) wissen" msgstr[1] "(%d meldingen) wissen" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Indicatorinstellingen" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Indicator verbergen" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximaal aantal te tonen meldingen" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Verwijderen" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Toevoegen" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "van" diff --git a/po/nn.po b/po/nn.po index 57b3292..cc5ea97 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: nn\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" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/oc.po b/po/oc.po index a3501a5..788113b 100644 --- a/po/oc.po +++ b/po/oc.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-04-03 18:21+0000\n" "Last-Translator: raimon ribal \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" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Escarta las notificacions per nom d'aplicacion" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Se lo nom d'una aplicacion es a la lista negra, s'escartaràn totas las " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -64,16 +65,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -81,31 +82,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/os.po b/po/os.po index 9e1c800..747703e 100644 --- a/po/os.po +++ b/po/os.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: os\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/pa.po b/po/pa.po index 741f8ea..53b5bb0 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: pa\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/pl.po b/po/pl.po index 339e92b..0c42dd3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-10-08 16:58+0000\n" "Last-Translator: Mateusz Rumiński \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" @@ -20,15 +20,16 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.9-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Odrzuć powiadomienia według nazwy aplikacji" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Jeśli nazwa aplikacji znajduje się na czarnej liście, wszystkie " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Wyczyść powiadomienia za pomocą środkowego kliknięcia" @@ -70,16 +71,17 @@ msgstr "" "Wskaźnik będzie wyświetlał co najwyżej liczbę powiadomień wskazanych przez " "tę wartość." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Powiadomienia" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Ustawienia..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -88,31 +90,41 @@ msgstr[1] "Wyczyść (%d Powiadomienia)" msgstr[2] "Wyczyszczenie (%d Powiadomień)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Ustawienia wskaźnika powiadomień" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Ukryj wskaźnik" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maksymalna liczba widocznych powiadomień" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Usuń" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Dodaj" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "od" diff --git a/po/ps.po b/po/ps.po index 8f2042a..505595b 100644 --- a/po/ps.po +++ b/po/ps.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ps\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/pt.po b/po/pt.po index 67de6d1..6c83f0f 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-12-22 00:21+0000\n" "Last-Translator: DHU \n" -"Language-Team: Portuguese \n" +"Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.10\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Descartar notificações pelo nome da aplicação" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Se um nome de uma aplicação estiver na lista negra, todas as notificações " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Apagar notificações ao apertar o botão do meio" @@ -69,16 +70,17 @@ msgstr "" "O indicador mostrará no máximo o número de notificações indicado por este " "valor." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notificações" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Configurações..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Limpar (%d notificação)" msgstr[1] "Limpar (%d notificações)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Configuração de notificações do indicador" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Ocultar código" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Número máximo de notificações visíveis" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Remover" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Adicionar" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "de" diff --git a/po/pt_BR.po b/po/pt_BR.po index ba023a4..5a06876 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-02-26 16:33+0000\n" "Last-Translator: Wellington Terumi Uemura \n" "Language-Team: Portuguese (Brazil) 1;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Descartar notificações por nome de aplicação" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Se um nome de aplicativo estiver na lista negra, será descartada qualquer " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Clique com o botão do meio para limpar as notificações" @@ -69,16 +70,17 @@ msgstr "" "O indicador só exibirá, no máximo, a quantidade de notificações definido por " "este valor." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notificações" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Configurações..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[0] "Limpar a (%d Notificação)" msgstr[1] "Limpar as (%d Notificações)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Configuração de Notificações do Indicador" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Ocultar indicador" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Quantidade máxima de notificações visíveis" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Remover" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Adicionar" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "de" diff --git a/po/ro.po b/po/ro.po index 53600f3..742ace0 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-03-29 14:40+0000\n" "Last-Translator: Alexie Brindusescu \n" -"Language-Team: Romanian \n" +"Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,15 +20,16 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Renunțare la notificările prin numele aplicației" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Dacă un nume de aplicație se află în lista neagră, toate notificările care " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Ștergeți notificările la clic pe mijloc" @@ -71,16 +72,17 @@ msgstr "" "Indicatorul va afișa cel mult numărul de notificări indicate de această " "valoare." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Notificări" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Setari..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -89,33 +91,43 @@ msgstr[1] "Stergeţi (%d notificări)" msgstr[2] "Stergeţi (%d notificări)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Setari ale indicatorului de notificari" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 #, fuzzy msgid "Hide indicator" msgstr "Ascundeţi indicatorul" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "Numărul maxim de elemente vizibile" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Elimina" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Adauga" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "de la" diff --git a/po/ru.po b/po/ru.po index 6b288f8..0bc959b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,28 +7,29 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-11-16 15:04+0000\n" "Last-Translator: winqooq \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.10-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Игнорировать уведомления по названию приложения" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Если название приложения в чёрном списке, все уведомления от приложения с " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Очистить уведомления по средней кнопке мыши" @@ -68,16 +69,17 @@ msgid "" "indicated by this value." msgstr "Индикатор будет отображать уведомлений не более, чем это значение." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Уведомления" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Настройки..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[1] "Очистить (%d уведомления)" msgstr[2] "Очистить (%d уведомлений)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Индикатор Настройки уведомлений" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Спрятать индикатор" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Максимальное количество уведомлений" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Удалить" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Добавить" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "от" diff --git a/po/sa.po b/po/sa.po index 0f7f8dd..de323c4 100644 --- a/po/sa.po +++ b/po/sa.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sa\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/sc.po b/po/sc.po index a692fdd..42bb54d 100644 --- a/po/sc.po +++ b/po/sc.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sc\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/sd.po b/po/sd.po index 819dc12..ff471b2 100644 --- a/po/sd.po +++ b/po/sd.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sd\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/se.po b/po/se.po index 453c59e..650f155 100644 --- a/po/se.po +++ b/po/se.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: se\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/shn.po b/po/shn.po index 7fce7d8..8f6ddc5 100644 --- a/po/shn.po +++ b/po/shn.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: shn\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/si.po b/po/si.po index 90a5ce5..5a3cb27 100644 --- a/po/si.po +++ b/po/si.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: si\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/sk.po b/po/sk.po index f287b9d..001152a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-06-28 06:41+0000\n" "Last-Translator: Zsolt Pastorek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.2-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Odstrániť notifikáciu podľa názvu aplikácie" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Ak názov aplikácie je na zozname vylúčených, všetky oznámenia s rovnakým " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Zmazať oznámenie pri kliknutí stredného tlačidla myši" @@ -67,16 +68,17 @@ msgid "" "indicated by this value." msgstr "Ukazovateľ zobrazí maximálne toľko položiek ako je uvedená hodnota." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Oznámenia" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Nastavenia..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -85,31 +87,41 @@ msgstr[1] "Vyčistit (%d oznámenia)" msgstr[2] "Vyčistit (%d oznámení)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Nastavenie notifikácie ukazovateľov" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Skryť ukazovateľ" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximálny počet viditeľných oznámení" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Odstrániť" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Pridať" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "z" diff --git a/po/sl.po b/po/sl.po index 25f50ce..59ddd5b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,32 +7,32 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sl\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=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -61,16 +61,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -80,31 +80,41 @@ msgstr[2] "" msgstr[3] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/sq.po b/po/sq.po index 65da3d8..7e413d6 100644 --- a/po/sq.po +++ b/po/sq.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-11-03 15:03+0000\n" "Last-Translator: Allan Nordhøy \n" -"Language-Team: Albanian \n" +"Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Fshij njoftimet në varësi të emrit të sistemit" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Nëse emri i një sistemi është në listë e zezë, të gjithë njoftimet " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -64,16 +65,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Njoftime" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -81,31 +82,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Fshih-treguesin" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Fshij" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Shto" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "Nga" diff --git a/po/sr.po b/po/sr.po index 08c2c3b..3777e43 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,32 +7,32 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sr\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -61,16 +61,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -79,31 +79,41 @@ msgstr[1] "" msgstr[2] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/sv.po b/po/sv.po index c2f2fb4..367cf34 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-10-24 16:53+0000\n" "Last-Translator: Mattias Münster \n" -"Language-Team: Swedish \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9.1-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Förkasta aviseringar efter programnamn" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Om ett programnamn finns i svartlistan kommer alla aviseringar som matchar " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Rensa aviseringar vid mittenklick" @@ -67,16 +68,17 @@ msgid "" "indicated by this value." msgstr "Indikatorn kommer som mest att visa detta antal aviseringar." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Aviseringar" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Inställningar…" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -84,31 +86,41 @@ msgstr[0] "Rensa (%d avisering)" msgstr[1] "Rensa (%d aviseringar)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Inställningar för indikatoraviseringar" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Göm indikatorn" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Maximalt antal synliga aviseringar" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Ta bort" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Lägg till" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "från" diff --git a/po/sw.po b/po/sw.po index ee0f61b..7c18d16 100644 --- a/po/sw.po +++ b/po/sw.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sw\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/szl.po b/po/szl.po index b7d239f..e63fb3b 100644 --- a/po/szl.po +++ b/po/szl.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: szl\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ta.po b/po/ta.po index 23d53cf..c779e27 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-01-06 14:21+0000\n" "Last-Translator: k Venkatesan kalimoorthy pillySA \n" "Language-Team: Tamil (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -80,31 +80,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/te.po b/po/te.po index 1c50bea..bed7d8b 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-08-26 06:23+0000\n" "Last-Translator: leela <53352@protonmail.com>\n" "Language-Team: Telugu (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -79,32 +79,42 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "కనిపించే అంశాల గరిష్ట సంఖ్య" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/tg.po b/po/tg.po index d613485..94eddf8 100644 --- a/po/tg.po +++ b/po/tg.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: tg\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/th.po b/po/th.po index 717f255..decc14f 100644 --- a/po/th.po +++ b/po/th.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: th\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ti.po b/po/ti.po index 3d3860a..bc79fb0 100644 --- a/po/ti.po +++ b/po/ti.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ti\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/tr.po b/po/tr.po index 6f5d95a..af87fae 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-11-23 17:04+0000\n" "Last-Translator: Burak Balta \n" -"Language-Team: Turkish \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Bir uygulama adı kara liste içinde ise, uygulama adıyla eşleşen tüm " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -64,16 +65,17 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Bildirimler" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Ayarlar..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -81,32 +83,42 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Göstergeyi gizle" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "En fazla görünür öğe sayısı" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Sil" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Ekle" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/ug.po b/po/ug.po index b12af5f..ef94782 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-05-09 06:12+0000\n" "Last-Translator: Abdusalam <1810010207@s.upc.edu.cn>\n" -"Language-Team: Uyghur \n" +"Language-Team: Uyghur \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,16 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "ئىلتىماس نامى بىلەن ئۇقتۇرۇشنى ئەمەلدىن قالدۇرۇڭ" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "ئەگەر بىر پروگرامما ئىسمى قارا تىزىملىكتە بولسا ، ئىلتىماس نامىغا ماس " @@ -35,7 +36,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "ئوتتۇرا چېكىشتىكى ئۇقتۇرۇشلارنى تازىلاڭ" @@ -68,16 +69,17 @@ msgid "" msgstr "" "كۆرسەتكۈچ پەقەت بۇ قىممەتتە كۆرسىتىلگەن ئۇقتۇرۇشلارنىڭ سانىنى كۆرسىتىدۇ." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "ئۇقتۇرۇش" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "تەڭشەكلەر ..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -85,31 +87,41 @@ msgstr[0] "ئۇقتۇرۇش(%d Notification)نى تازىلاڭ" msgstr[1] "ئۇقتۇرۇش(%d Notifications)لارنى تازىلاڭ" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "كۆرسەتكۈچ ئۇقتۇرۇشى" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "كۆرسەتكۈچنى يوشۇرۇش" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "كۆرۈنگەن ئۇقتۇرۇشلارنىڭ ئەڭ كۆپ سانى" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "ئۆچۈرۈش" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "قوش" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "ئەۋەتكۈچى" diff --git a/po/uk.po b/po/uk.po index 5667cf6..ea087e6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-08-07 21:32+0000\n" "Last-Translator: Prosta4okua \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,15 +20,16 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.2-dev\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "Ігнорувати сповіщення за назвою застосунку" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 +#, fuzzy msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" "Якщо ім'я застосунку в чорному списку, всі сповіщення, що відповідають назві " @@ -36,7 +37,7 @@ msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "Очистити сповіщення по середній кнопці миші" @@ -68,16 +69,17 @@ msgid "" "indicated by this value." msgstr "Індикатор буде відображати повідомлень не більше, ніж це значення." -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "Сповіщення" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +#, fuzzy +msgid "Settings…" msgstr "Налаштування ..." -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -86,31 +88,41 @@ msgstr[1] "Очистити%d Сповіщення)" msgstr[2] "Очистити%d Сповіщень)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "Налаштування сповіщень індикаторів" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "Приховати індикатор" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "Максимальна кількість видимих сповіщень" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "Видалити" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "Додати" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "з" diff --git a/po/ur.po b/po/ur.po index bc75046..7e8f9d1 100644 --- a/po/ur.po +++ b/po/ur.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ur\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/uz.po b/po/uz.po index 1f39d8f..ac616ce 100644 --- a/po/uz.po +++ b/po/uz.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/vi.po b/po/vi.po index 2ec273e..13c2238 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: vi\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=1; plural=0;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,47 +60,57 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" msgstr[0] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/wae.po b/po/wae.po index b1873d5..a092922 100644 --- a/po/wae.po +++ b/po/wae.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: wae\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 48fdb2b..ea45555 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2020-05-27 06:41+0000\n" "Last-Translator: wdggg \n" "Language-Team: Chinese (Simplified) (%d Notification)" msgid_plural "Clear (%d Notifications)" msgstr[0] "清空 (%d 通知)" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "指示器通知设置" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "隐藏指示器" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "最大可见通知数量" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "删除" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "添加" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "从" diff --git a/po/zh_HK.po b/po/zh_HK.po index 310a4a0..325cfb0 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -7,31 +7,31 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2017-12-02 19:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: zh_HK\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=INTEGER; plural=EXPRESSION;\n" -#. blacklist +#. filter-list #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:1 -#: ../src/indicator-notifications-settings.c:274 +#: ../src/indicator-notifications-settings.c:327 msgid "Discard notifications by application name" msgstr "" #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:2 msgid "" -"If an application name is in the blacklist, all notifications matching the " +"If an application name is in the filter list, all notifications matching the " "application name will be discarded." msgstr "" #. clear-on-middle-click #: ../data/org.ayatana.indicator.notifications.gschema.xml.in.in:3 -#: ../src/indicator-notifications-settings.c:244 +#: ../src/indicator-notifications-settings.c:279 msgid "Clear notifications on middle click" msgstr "" @@ -60,16 +60,16 @@ msgid "" "indicated by this value." msgstr "" -#: ../src/indicator-notifications.c:167 +#: ../src/indicator-notifications.c:177 msgid "Notifications" msgstr "" #. Create the settings menuitem -#: ../src/indicator-notifications.c:176 -msgid "Settings..." +#: ../src/indicator-notifications.c:186 +msgid "Settings…" msgstr "" -#: ../src/indicator-notifications.c:475 +#: ../src/indicator-notifications.c:522 #, c-format msgid "Clear (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -77,31 +77,41 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 msgid "Hide indicator" msgstr "" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 msgid "Maximum number of visible notifications" msgstr "" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 5296f8f..b70cfc7 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-28 20:16+0200\n" +"POT-Creation-Date: 2020-08-21 15:00+0200\n" "PO-Revision-Date: 2019-01-12 05:06+0000\n" "Last-Translator: Louies \n" "Language-Team: Chinese (Traditional) (%d Notification)" msgid_plural "Clear (%d Notifications)" @@ -81,33 +82,43 @@ msgstr[0] "" msgstr[1] "" #. Window Frame -#: ../src/indicator-notifications-settings.c:227 -#: ../src/indicator-notifications-settings.c:233 -#: ../src/indicator-notifications-settings.c:348 +#: ../src/indicator-notifications-settings.c:262 +#: ../src/indicator-notifications-settings.c:268 +#: ../src/indicator-notifications-settings.c:411 msgid "Indicator Notifications Settings" msgstr "" #. hide-indicator -#: ../src/indicator-notifications-settings.c:253 +#: ../src/indicator-notifications-settings.c:288 #, fuzzy msgid "Hide indicator" msgstr "隱藏指示器" +#. do-not-disturb +#: ../src/indicator-notifications-settings.c:297 +msgid "Do not disturb" +msgstr "" + +#. swap-clear-settings +#: ../src/indicator-notifications-settings.c:306 +msgid "Swap \"Clear\" and \"Settings\" items" +msgstr "" + #. max-items #. FIXME: indicator does not change max items until restart... -#: ../src/indicator-notifications-settings.c:263 +#: ../src/indicator-notifications-settings.c:316 #, fuzzy msgid "Maximum number of visible notifications" msgstr "最大可見項目數量" -#: ../src/indicator-notifications-settings.c:299 +#: ../src/indicator-notifications-settings.c:352 msgid "Remove" msgstr "" -#: ../src/indicator-notifications-settings.c:304 +#: ../src/indicator-notifications-settings.c:357 msgid "Add" msgstr "" -#: ../src/notification-menuitem.c:129 +#: ../src/notification-menuitem.c:128 msgid "from" msgstr "來自" diff --git a/src/settings.h b/src/settings.h index 43f0383..9663c8d 100644 --- a/src/settings.h +++ b/src/settings.h @@ -6,8 +6,8 @@ #define __SETTINGS_H__ #define NOTIFICATIONS_SCHEMA "org.ayatana.indicator.notifications" -#define NOTIFICATIONS_KEY_BLACKLIST "filter-list" -#define NOTIFICATIONS_KEY_BLACKLIST_HINTS "filter-list-hints" +#define NOTIFICATIONS_KEY_FILTER_LIST "filter-list" +#define NOTIFICATIONS_KEY_FILTER_LIST_HINTS "filter-list-hints" #define NOTIFICATIONS_KEY_CLEAR_MC "clear-on-middle-click" #define NOTIFICATIONS_KEY_DND "do-not-disturb" #define NOTIFICATIONS_KEY_HIDE_INDICATOR "hide-indicator" -- cgit v1.2.3