Codebase list xapp / e9f6b06
New upstream version 2.0.5 Norbert Preining 3 years ago
65 changed file(s) with 351 addition(s) and 273 deletion(s). Raw diff Collapse all Expand all
0 xapp (2.0.5) ulyssa; urgency=medium
1
2 [ Michael Webster ]
3 * favorite-vfs-file.c: Don't mark favorites that have unavailable target files as symbolic links.
4 * favorite-vfs-file.c: Remove a file from favorites when deleted or trashed (but don't actually delete or trash them) - this brings the favorites behavior in line with recents.
5 * favorite-vfs-file.c: Remove some methods that can't be supported.
6 * Go back to leaving favorites with missing targets as symlinks.
7 * favorite-vfs-file.c: Add thumbnailing preference to the filesystem info.
8 * xapp-status-icon.c: Construct fallback dbus name from a non-localized string.
9 * status icon: Replace g_get_application_name with g_get_progname everywhere else (followup to previous commit).
10 * xapp-status-icon-monitor.c: fix typo.
11
12 [ Clement Lefebvre ]
13 * l10n: Update translations
14
15 [ Michael Webster ]
16 * xapp-gtk3-module.c: Add a mechanism to allow a GtkWindow's icon (#127)
17
18 -- Clement Lefebvre <root@linuxmint.com> Sat, 02 Jan 2021 18:35:48 +0000
19
020 xapp (2.0.4) ulyssa; urgency=medium
121
222 [ Leigh Scott ]
411411 }
412412 else
413413 {
414 // This file is still in our favorites list but doesn't exist (currently).
414415 g_clear_error (error);
415416 gchar *content_type;
416417
418419
419420 g_file_info_set_display_name (info, priv->info->display_name);
420421 g_file_info_set_name (info, priv->info->display_name);
422 g_file_info_set_file_type (info, G_FILE_TYPE_SYMBOLIC_LINK);
421423 g_file_info_set_is_symlink (info, TRUE);
422
423424 g_file_info_set_symlink_target (info, priv->info->uri);
425 g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_STANDARD_TARGET_URI, priv->info->uri);
424426
425427 /* Prevent showing a 'thumbnailing' icon */
426428 g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_THUMBNAILING_FAILED, TRUE);
428430 /* This will keep the sort position the same for missing or unmounted files */
429431 g_file_info_set_attribute_string (info, FAVORITE_METADATA_KEY, META_TRUE);
430432 g_file_info_set_attribute_string (info, FAVORITE_AVAILABLE_METADATA_KEY, META_FALSE);
431 g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_STANDARD_TARGET_URI, priv->info->uri);
432433
433434 content_type = g_content_type_from_mime_type (priv->info->cached_mimetype);
434435
539540 GError **error)
540541 {
541542 FavoriteVfsFilePrivate *priv = favorite_vfs_file_get_instance_private (FAVORITE_VFS_FILE (file));
543 GFileInfo *info;
544 GFileAttributeMatcher *matcher;
545
546 matcher = g_file_attribute_matcher_new (attributes);
542547
543548 if (priv->info != NULL && priv->info->uri != NULL)
544549 {
551556 cancellable,
552557 error);
553558
559 if (g_file_attribute_matcher_matches (matcher, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY))
560 {
561 g_file_info_set_attribute_boolean (info,
562 G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
563 }
564
554565 g_object_unref (real_file);
555566 return info;
556567 }
557568
558 GFileInfo *info;
559 GFileAttributeMatcher *matcher;
560
561569 info = g_file_info_new ();
562
563 matcher = g_file_attribute_matcher_new (attributes);
564570
565571 if (g_file_attribute_matcher_matches (matcher, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE))
566572 {
572578 {
573579 g_file_info_set_attribute_boolean (info,
574580 G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
581 }
582
583 if (g_file_attribute_matcher_matches (matcher, G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW))
584 {
585 g_file_info_set_attribute_uint32 (info,
586 G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW,
587 G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL);
575588 }
576589
577590 g_file_attribute_matcher_unref (matcher);
968981 return NULL;
969982 }
970983
971 GFileOutputStream *
972 file_create (GFile *file,
973 GFileCreateFlags flags,
974 GCancellable *cancellable,
975 GError **error)
976 {
977 FavoriteVfsFilePrivate *priv = favorite_vfs_file_get_instance_private (FAVORITE_VFS_FILE (file));
978
979 if (priv->info != NULL && priv->info->uri != NULL)
980 {
981 GFile *real_file = g_file_new_for_uri (priv->info->uri);
982
983 GFileOutputStream *stream;
984
985 stream = g_file_create (real_file,
986 flags,
987 cancellable,
988 error);
989
990 g_object_unref (real_file);
991 return stream;
992 }
993
994 g_set_error_literal (error, G_IO_ERROR,
995 G_IO_ERROR_NOT_SUPPORTED,
996 _("Operation not supported"));
997
998 return NULL;
999 }
1000
1001984 static GFileOutputStream *
1002985 file_replace (GFile *file,
1003986 const char *etag,
10601043 }
10611044
10621045 static GFileIOStream *
1063 file_create_readwrite (GFile *file,
1064 GFileCreateFlags flags,
1065 GCancellable *cancellable,
1066 GError **error)
1067 {
1068 FavoriteVfsFilePrivate *priv = favorite_vfs_file_get_instance_private (FAVORITE_VFS_FILE (file));
1069
1070 if (priv->info != NULL && priv->info->uri != NULL)
1071 {
1072 GFileIOStream *res;
1073 GFile *real_file = g_file_new_for_uri (priv->info->uri);
1074
1075 res = g_file_create_readwrite (real_file,
1076 flags,
1077 cancellable,
1078 error);
1079
1080 g_object_unref (real_file);
1081 return res;
1082 }
1083
1084 g_set_error_literal (error, G_IO_ERROR,
1085 G_IO_ERROR_NOT_SUPPORTED,
1086 _("Operation not supported"));
1087
1088 return NULL;
1089 }
1090
1091 static GFileIOStream *
10921046 file_replace_readwrite (GFile *file,
10931047 const char *etag,
10941048 gboolean make_backup,
11281082 {
11291083 FavoriteVfsFilePrivate *priv = favorite_vfs_file_get_instance_private (FAVORITE_VFS_FILE (file));
11301084
1131 if (priv->info != NULL && priv->info->uri != NULL)
1132 {
1133 gboolean res;
1134 GFile *real_file = g_file_new_for_uri (priv->info->uri);
1135
1136 res = g_file_delete (real_file,
1137 cancellable,
1138 error);
1139
1140 g_object_unref (real_file);
1141 return res;
1085 if (!is_root_file (FAVORITE_VFS_FILE (file)))
1086 {
1087 if (priv->info != NULL && priv->info->uri != NULL)
1088 {
1089 xapp_favorites_remove (xapp_favorites_get_default (), priv->info->uri);
1090 }
1091 else
1092 {
1093 xapp_favorites_remove (xapp_favorites_get_default (), priv->uri);
1094 }
1095
1096 return TRUE;
11421097 }
11431098
11441099 g_set_error_literal (error, G_IO_ERROR,
11531108 GCancellable *cancellable,
11541109 GError **error)
11551110 {
1156 FavoriteVfsFilePrivate *priv = favorite_vfs_file_get_instance_private (FAVORITE_VFS_FILE (file));
1157
1158 if (priv->info != NULL && priv->info->uri != NULL)
1159 {
1160 gboolean res;
1161 GFile *real_file = g_file_new_for_uri (priv->info->uri);
1162
1163 res = g_file_trash (real_file,
1164 cancellable,
1165 error);
1166 g_object_unref (real_file);
1167
1168 return res;
1169 }
1170
1171 g_set_error_literal (error, G_IO_ERROR,
1172 G_IO_ERROR_NOT_SUPPORTED,
1173 "Not supported");
1174
1175 return FALSE;
1111 return file_delete (file, cancellable, error);
11761112 }
11771113
11781114 gboolean
1179 file_move (GFile *source,
1115 file_copy (GFile *source,
11801116 GFile *destination,
11811117 GFileCopyFlags flags,
11821118 GCancellable *cancellable,
11911127 gboolean res;
11921128 GFile *real_file = g_file_new_for_uri (priv->info->uri);
11931129
1194 res = g_file_move (real_file,
1130 res = g_file_copy (real_file,
11951131 destination,
11961132 flags,
11971133 cancellable,
13421278 iface->set_attributes_from_info = file_set_attributes_from_info;
13431279 iface->read_fn = file_read_fn;
13441280 iface->append_to = file_append_to;
1345 iface->create = file_create;
1281 // iface->create = file_create; ### Don't support
13461282 iface->replace = file_replace;
13471283 iface->open_readwrite = file_open_readwrite;
1348 iface->create_readwrite = file_create_readwrite;
1284 // iface->create_readwrite = file_create_readwrite; ### Don't support
13491285 iface->replace_readwrite = file_replace_readwrite;
13501286 iface->delete_file = file_delete;
13511287 iface->trash = file_trash;
13521288 // iface->make_directory = file_make_directory; ### Don't support
13531289 // iface->make_symbolic_link = file_make_symbolic_link; ### Don't support
1354 iface->move = file_move;
1290 iface->copy = file_copy;
13551291 iface->monitor_dir = file_monitor_dir;
13561292 iface->monitor_file = file_monitor_file;
13571293 iface->measure_disk_usage = file_measure_disk_usage;
33 #include "xapp-favorites.h"
44 #include "favorite-vfs-file.h"
55
6 /* Gtk module justification:
6 #define ICON_OVERRIDE_VAR "XAPP_FORCE_GTKWINDOW_ICON"
7
8 /* xapp-gtk3-module:
79 *
8 * The sole purpose of this module currently is to add a 'Favorites'
9 * shortcut to GtkFileChooser dialogs.
10 * - Initializes the favorites:// vfs and adds a Favorites shortcut
11 * to any gtk3 sidebars (like in file dialogs).
1012 *
11 * In gtk_module_init, the 'favorites' uri scheme is added to the default
12 * vfs. Ordinarily, non-file:// schemes aren't supported in these dialogs
13 * unless their 'local-only' property is set to FALSE. Since favorites
14 * are shortcuts to locally-available files, we lie to the chooser setup
15 * by returning "/" instead of NULL when g_file_get_path ("favorites:///")
16 * is called.
13 * - Overrides the window icon for any GtkWindows when an environment
14 * variable is set with an icon path or name.
1715 */
1816
1917 void gtk_module_init (gint *argc, gchar ***argv[]);
2018 static void (* original_sidebar_constructed) (GObject *object);
19 static void (* original_window_realize) (GtkWidget *widget);
20 static void (* original_window_unrealize) (GtkWidget *widget);
2121
2222 static void
2323 xapp_sidebar_constructed (GObject *object)
4545 g_object_unref (fav_settings);
4646 }
4747
48 static void
49 window_icon_changed (GtkWindow *window)
50 {
51 const gchar *forced_icon_str;
52 gpointer anti_recursion_ptr;
53
54 forced_icon_str = g_object_get_data (G_OBJECT (window), "xapp-forced-window-icon");
55 anti_recursion_ptr = g_object_get_data (G_OBJECT (window), "xapp-forced-icon-last-icon-ptr");
56
57 if (anti_recursion_ptr && anti_recursion_ptr == gtk_window_get_icon (window))
58 {
59 g_debug ("Window icon notify received, but anti-recurse pointer hasn't changed, returning.");
60 return;
61 }
62
63 if (forced_icon_str != NULL)
64 {
65 gboolean clear_pixbuf = FALSE;
66
67 g_debug ("Window icon changed, forcing back to '%s'", forced_icon_str);
68
69 g_signal_handlers_block_by_func (G_OBJECT (window), window_icon_changed, window);
70
71 if (g_path_is_absolute (forced_icon_str))
72 {
73 gtk_window_set_icon_name (window, NULL);
74 gtk_window_set_icon_from_file (window, forced_icon_str, NULL);
75 }
76 else
77 {
78 gtk_window_set_icon (window, NULL);
79 gtk_window_set_icon_name (window, forced_icon_str);
80 clear_pixbuf = TRUE;
81 }
82
83 g_object_set_data_full (G_OBJECT (window),
84 "xapp-forced-icon-last-icon-ptr",
85 clear_pixbuf ? NULL : g_object_ref (gtk_window_get_icon (window)),
86 g_object_unref);
87
88 g_signal_handlers_unblock_by_func (G_OBJECT (window), window_icon_changed, window);
89 }
90 }
91
92 static void
93 overridden_window_realize (GtkWidget *widget)
94 {
95 (* original_window_realize) (widget);
96
97 static gint already_applied = 0;
98 if (already_applied)
99 {
100 return;
101 }
102
103 already_applied = 1;
104
105 g_debug ("Realize overridden window (%p).", widget);
106
107 const gchar *env_icon = g_getenv (ICON_OVERRIDE_VAR);
108
109 if (env_icon != NULL)
110 {
111 g_object_set_data_full (G_OBJECT (widget), "xapp-forced-window-icon", g_strdup (env_icon), g_free);
112 window_icon_changed (GTK_WINDOW (widget));
113
114 g_signal_connect_swapped (widget, "notify::icon", G_CALLBACK (window_icon_changed), widget);
115 g_signal_connect_swapped (widget, "notify::icon-name", G_CALLBACK (window_icon_changed), widget);
116 }
117 }
118
119 static void
120 overridden_window_unrealize (GtkWidget *widget)
121 {
122 (* original_window_unrealize) (widget);
123
124 g_debug ("Unrealize overridden window (%p).", widget);
125
126 g_signal_handlers_disconnect_by_func (widget, window_icon_changed, widget);
127 }
128
129 static void
130 apply_window_icon_override (void)
131 {
132 static gboolean applied = 0;
133
134 // I don't think these guards are necessary. This should only run once, but better off safe.
135 if (!applied)
136 {
137 g_debug ("XAPP_FORCE_GTKWINDOW_ICON found in environment, overriding the window icon with its contents");
138
139 applied = TRUE;
140
141 GtkWidgetClass *widget_class;
142 widget_class = g_type_class_ref (GTK_TYPE_WINDOW);
143
144 original_window_realize = widget_class->realize;
145 widget_class->realize = overridden_window_realize;
146 original_window_unrealize = widget_class->unrealize;
147 widget_class->unrealize = overridden_window_unrealize;
148 }
149 }
150
151 static void
152 apply_sidebar_favorites_override (void)
153 {
154 static gboolean applied = 0;
155
156 if (!applied)
157 {
158 g_debug ("Adding a Favorites shortcut to GtkPlacesSideBars");
159
160 applied = TRUE;
161
162 GObjectClass *object_class;
163 object_class = g_type_class_ref (GTK_TYPE_PLACES_SIDEBAR);
164
165 original_sidebar_constructed = object_class->constructed;
166 object_class->constructed = xapp_sidebar_constructed;
167 }
168 }
169
48170 G_MODULE_EXPORT void gtk_module_init (gint *argc, gchar ***argv[]) {
49 GObjectClass *object_class;
50
171 g_debug ("Initializing XApp GtkModule");
51172 // This won't instantiate XAppFavorites but will register the uri so
52173 // it can be used by apps (like pix which doesn't use the favorites api,
53174 // but just adds favorites:/// to its sidebar.)
54175 init_favorite_vfs ();
176 apply_sidebar_favorites_override ();
55177
56 object_class = g_type_class_ref (GTK_TYPE_PLACES_SIDEBAR);
57
58 original_sidebar_constructed = object_class->constructed;
59 object_class->constructed = xapp_sidebar_constructed;
178 if (g_getenv (ICON_OVERRIDE_VAR) != NULL)
179 {
180 apply_window_icon_override ();
181 }
60182 }
61183
62184 G_MODULE_EXPORT gchar* g_module_check_init (GModule *module);
388388 gchar *valid_app_name, *owned_name;
389389 static gint unique_id = 0;
390390
391 valid_app_name = g_strdelimit (g_strdup (g_get_application_name ()), ".-,=+~`/", '_');
391 valid_app_name = g_strdelimit (g_strdup (g_get_prgname ()), ".-,=+~`/", '_');
392392 owned_name = g_strdup_printf ("%s.%s_%d", MONITOR_NAME, valid_app_name, unique_id++);
393393 g_free (valid_app_name);
394394
784784 obj_server_finalized (gpointer data,
785785 GObject *object)
786786 {
787 g_debug ("XAppStatusIcon: Final icon removed, clearing object manager (%s)", g_get_application_name ());
787 g_debug ("XAppStatusIcon: Final icon removed, clearing object manager (%s)", g_get_prgname ());
788788
789789 if (name_owner_id > 0)
790790 {
800800 {
801801 if (obj_server == NULL)
802802 {
803 g_debug ("XAppStatusIcon: New object manager for (%s)", g_get_application_name ());
803 g_debug ("XAppStatusIcon: New object manager for (%s)", g_get_prgname ());
804804
805805 obj_server = g_dbus_object_manager_server_new (ICON_BASE_PATH);
806806 g_dbus_object_manager_server_set_connection (obj_server, self->priv->connection);
864864 }
865865 else
866866 {
867 gchar *valid_app_name = g_strdelimit (g_strdup (g_get_application_name ()), " .-,=+~`/", '_');
867 gchar *valid_app_name = g_strdelimit (g_strdup (g_get_prgname ()), " .-,=+~`/", '_');
868868
869869 owner_name = g_strdup_printf ("%s.%s",
870870 ICON_NAME,
11621162 case PROP_NAME:
11631163 {
11641164 const gchar *name = g_value_get_string (value);
1165 // Can't be null. We set to g_get_application_name() by default.
1165 // Can't be null. We set to g_get_prgname() by default.
11661166 if (name == NULL || name[0] == '\0')
11671167 {
11681168 break;
12101210 {
12111211 self->priv = xapp_status_icon_get_instance_private (self);
12121212
1213 self->priv->name = g_strdup (g_get_application_name());
1213 self->priv->name = g_strdup (g_get_prgname());
12141214
12151215 self->priv->state = XAPP_STATUS_ICON_STATE_NO_SUPPORT;
12161216 self->priv->icon_size = FALLBACK_ICON_SIZE;
13871387 * this can be useful in sandboxed environments where a well-defined name is required. If
13881388 * additional icons are created, only the name given to the initial one will be used for dbus,
13891389 * though different names can still affect the sort order. This is set to the value of
1390 * g_get_application_name() if no other name is provided.
1390 * g_get_prgname() if no other name is provided.
13911391 */
13921392 g_object_class_install_property (gobject_class, PROP_NAME,
13931393 g_param_spec_string ("name",
15111511
15121512 if (name == NULL || name[0] == '\0')
15131513 {
1514 // name can't be null. We set to g_get_application_name() at startup,
1514 // name can't be null. We set to g_get_prgname() at startup,
15151515 // and the set_property handler silently ignores nulls, but if this
15161516 // is explicit, warn about it.
15171517 g_warning ("Can't set icon the name to null or empty string");
00 project('xapp',
11 'c',
2 version : '2.0.4',
2 version : '2.0.5',
33 default_options : [ 'buildtype=debugoptimized' ],
44 )
55
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818 "Language: cy\n"
1919
2020 #: libxapp/favorite-vfs-file.c:463
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
77 "Project-Id-Version: linuxmint\n"
88 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
99 "POT-Creation-Date: 2020-11-25 11:16+0000\n"
10 "PO-Revision-Date: 2020-11-25 17:33+0000\n"
10 "PO-Revision-Date: 2020-12-19 22:30+0000\n"
1111 "Last-Translator: Kimmo Kujansuu <Unknown>\n"
1212 "Language-Team: Finnish <fi@li.org>\n"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
160160 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:7
161161 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:11
162162 msgid "Area where XApp status icons appear"
163 msgstr "Alue, jolla XApp -tilakuvakkeet näkyvät"
163 msgstr "Alue, jolla XApp kuvakkeet näkyvät"
164164
165165 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:6
166166 msgid "XApp Status Applet Factory"
167 msgstr "XApp-ohjelmien tilan sovelmatehdas"
167 msgstr "XApp sovelman tila"
168168
169169 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:10
170170 msgid "XApp Status Applet"
171 msgstr "XApp-ohjelmien tilasovellus"
171 msgstr "XApp-ohjelman tilasovellus"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
77 "Project-Id-Version: linuxmint\n"
88 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
99 "POT-Creation-Date: 2020-11-25 11:16+0000\n"
10 "PO-Revision-Date: 2020-02-10 15:55+0000\n"
11 "Last-Translator: AO <Unknown>\n"
10 "PO-Revision-Date: 2020-12-16 00:51+0000\n"
11 "Last-Translator: Francis Lapointe <Unknown>\n"
1212 "Language-Team: French (Canada) <fr_CA@li.org>\n"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
21 msgstr ""
21 msgstr "Favoris"
2222
2323 #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963
2424 #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026
2727 #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239
2828 #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308
2929 msgid "Operation not supported"
30 msgstr ""
30 msgstr "Opération non supportée"
3131
3232 #: libxapp/xapp-icon-chooser-button.c:207
3333 #: libxapp/xapp-icon-chooser-dialog.c:639
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
88 "MIME-Version: 1.0\n"
99 "Content-Type: text/plain; charset=UTF-8\n"
1010 "Content-Transfer-Encoding: 8bit\n"
11 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
12 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
11 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
12 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1313 "Language: hu\n"
1414
1515 #: libxapp/favorite-vfs-file.c:463
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818 "Language: ie\n"
1919
2020 #: libxapp/favorite-vfs-file.c:463
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
77 "Project-Id-Version: linuxmint\n"
88 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
99 "POT-Creation-Date: 2020-11-25 11:16+0000\n"
10 "PO-Revision-Date: 2020-09-23 08:25+0000\n"
10 "PO-Revision-Date: 2020-12-14 23:02+0000\n"
1111 "Last-Translator: Changmin Jang <Unknown>\n"
1212 "Language-Team: Korean <ko@li.org>\n"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
21 msgstr ""
21 msgstr "즐겨찾기"
2222
2323 #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963
2424 #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026
2727 #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239
2828 #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308
2929 msgid "Operation not supported"
30 msgstr ""
30 msgstr "지원되지 않는 작업입니다"
3131
3232 #: libxapp/xapp-icon-chooser-button.c:207
3333 #: libxapp/xapp-icon-chooser-dialog.c:639
4949
5050 #: libxapp/xapp-icon-chooser-button.c:234
5151 msgid "Category"
52 msgstr ""
52 msgstr "카테고리"
5353
5454 #: libxapp/xapp-icon-chooser-button.c:235
5555 msgid "The default category."
56 msgstr ""
56 msgstr "기본 카테고리입니다."
5757
5858 #: libxapp/xapp-icon-chooser-dialog.c:98
5959 msgid "Actions"
138138
139139 #: libxapp/xapp-icon-chooser-dialog.c:665
140140 msgid "The icon to use by default"
141 msgstr ""
141 msgstr "기본으로 사용할 아이콘"
142142
143143 #: libxapp/xapp-icon-chooser-dialog.c:1933
144144 msgid "Select image file"
154154
155155 #: status-applets/mate/mate-xapp-status-applet.py:330
156156 msgid "About"
157 msgstr ""
157 msgstr "정보"
158158
159159 #: status-applets/mate/mate-xapp-status-applet.py:350
160160 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:7
161161 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:11
162162 msgid "Area where XApp status icons appear"
163 msgstr ""
163 msgstr "XApp 상태 아이콘이 나타나는 영역"
164164
165165 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:6
166166 msgid "XApp Status Applet Factory"
167 msgstr ""
167 msgstr "XApp 상태 애플릿 팩토리"
168168
169169 #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:10
170170 msgid "XApp Status Applet"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
77 "Project-Id-Version: linuxmint\n"
88 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
99 "POT-Creation-Date: 2020-11-25 11:16+0000\n"
10 "PO-Revision-Date: 2020-04-11 19:23+0000\n"
11 "Last-Translator: Mateusz Łukasik <Unknown>\n"
10 "PO-Revision-Date: 2020-12-11 14:56+0000\n"
11 "Last-Translator: Paweł Pańczyk <pawelppanczyk@gmail.com>\n"
1212 "Language-Team: Polish <pl@li.org>\n"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
21 msgstr ""
21 msgstr "Ulubione"
2222
2323 #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963
2424 #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026
2727 #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239
2828 #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308
2929 msgid "Operation not supported"
30 msgstr ""
30 msgstr "Operacja nieobsługiwana"
3131
3232 #: libxapp/xapp-icon-chooser-button.c:207
3333 #: libxapp/xapp-icon-chooser-dialog.c:639
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
77 "Project-Id-Version: linuxmint\n"
88 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
99 "POT-Creation-Date: 2020-11-25 11:16+0000\n"
10 "PO-Revision-Date: 2020-02-28 10:40+0000\n"
11 "Last-Translator: Wellington Oliveira dos Santos <welblade@gmail.com>\n"
10 "PO-Revision-Date: 2020-12-10 15:42+0000\n"
11 "Last-Translator: Gilberto vagner <vagner.unix@gmail.com>\n"
1212 "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
21 msgstr ""
21 msgstr "Favoritos"
2222
2323 #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963
2424 #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026
2727 #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239
2828 #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308
2929 msgid "Operation not supported"
30 msgstr ""
30 msgstr "Operação não suportada"
3131
3232 #: libxapp/xapp-icon-chooser-button.c:207
3333 #: libxapp/xapp-icon-chooser-dialog.c:639
77 "Project-Id-Version: linuxmint\n"
88 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
99 "POT-Creation-Date: 2020-11-25 11:16+0000\n"
10 "PO-Revision-Date: 2019-11-14 20:18+0000\n"
11 "Last-Translator: Flaviu <flaviu@gmx.com>\n"
10 "PO-Revision-Date: 2020-12-20 10:45+0000\n"
11 "Last-Translator: Dorian Baciu <Unknown>\n"
1212 "Language-Team: Romanian <ro@li.org>\n"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
21 msgstr ""
21 msgstr "Preferințe"
2222
2323 #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963
2424 #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026
2727 #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239
2828 #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308
2929 msgid "Operation not supported"
30 msgstr ""
30 msgstr "Operația nu este acceptată"
3131
3232 #: libxapp/xapp-icon-chooser-button.c:207
3333 #: libxapp/xapp-icon-chooser-dialog.c:639
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818 "Language: sk\n"
1919
2020 #: libxapp/favorite-vfs-file.c:463
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818 "Language: sr\n"
1919
2020 #: libxapp/favorite-vfs-file.c:463
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"
1313 "MIME-Version: 1.0\n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
16 "X-Launchpad-Export-Date: 2020-12-10 10:32+0000\n"
17 "X-Generator: Launchpad (build 4853cb86c14c5a9e513816c8a61121c639b30835)\n"
16 "X-Launchpad-Export-Date: 2021-01-02 14:18+0000\n"
17 "X-Generator: Launchpad (build 34b3ffd45c9543b7f7aa5aa313925241e9e7ca3f)\n"
1818
1919 #: libxapp/favorite-vfs-file.c:463
2020 msgid "Favorites"