New upstream version 2.0.5
Norbert Preining
2 years ago
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 | ||
0 | 20 | xapp (2.0.4) ulyssa; urgency=medium |
1 | 21 | |
2 | 22 | [ Leigh Scott ] |
411 | 411 | } |
412 | 412 | else |
413 | 413 | { |
414 | // This file is still in our favorites list but doesn't exist (currently). | |
414 | 415 | g_clear_error (error); |
415 | 416 | gchar *content_type; |
416 | 417 | |
418 | 419 | |
419 | 420 | g_file_info_set_display_name (info, priv->info->display_name); |
420 | 421 | g_file_info_set_name (info, priv->info->display_name); |
422 | g_file_info_set_file_type (info, G_FILE_TYPE_SYMBOLIC_LINK); | |
421 | 423 | g_file_info_set_is_symlink (info, TRUE); |
422 | ||
423 | 424 | 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); | |
424 | 426 | |
425 | 427 | /* Prevent showing a 'thumbnailing' icon */ |
426 | 428 | g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_THUMBNAILING_FAILED, TRUE); |
428 | 430 | /* This will keep the sort position the same for missing or unmounted files */ |
429 | 431 | g_file_info_set_attribute_string (info, FAVORITE_METADATA_KEY, META_TRUE); |
430 | 432 | 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); | |
432 | 433 | |
433 | 434 | content_type = g_content_type_from_mime_type (priv->info->cached_mimetype); |
434 | 435 | |
539 | 540 | GError **error) |
540 | 541 | { |
541 | 542 | 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); | |
542 | 547 | |
543 | 548 | if (priv->info != NULL && priv->info->uri != NULL) |
544 | 549 | { |
551 | 556 | cancellable, |
552 | 557 | error); |
553 | 558 | |
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 | ||
554 | 565 | g_object_unref (real_file); |
555 | 566 | return info; |
556 | 567 | } |
557 | 568 | |
558 | GFileInfo *info; | |
559 | GFileAttributeMatcher *matcher; | |
560 | ||
561 | 569 | info = g_file_info_new (); |
562 | ||
563 | matcher = g_file_attribute_matcher_new (attributes); | |
564 | 570 | |
565 | 571 | if (g_file_attribute_matcher_matches (matcher, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE)) |
566 | 572 | { |
572 | 578 | { |
573 | 579 | g_file_info_set_attribute_boolean (info, |
574 | 580 | 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); | |
575 | 588 | } |
576 | 589 | |
577 | 590 | g_file_attribute_matcher_unref (matcher); |
968 | 981 | return NULL; |
969 | 982 | } |
970 | 983 | |
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 | ||
1001 | 984 | static GFileOutputStream * |
1002 | 985 | file_replace (GFile *file, |
1003 | 986 | const char *etag, |
1060 | 1043 | } |
1061 | 1044 | |
1062 | 1045 | 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 * | |
1092 | 1046 | file_replace_readwrite (GFile *file, |
1093 | 1047 | const char *etag, |
1094 | 1048 | gboolean make_backup, |
1128 | 1082 | { |
1129 | 1083 | FavoriteVfsFilePrivate *priv = favorite_vfs_file_get_instance_private (FAVORITE_VFS_FILE (file)); |
1130 | 1084 | |
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; | |
1142 | 1097 | } |
1143 | 1098 | |
1144 | 1099 | g_set_error_literal (error, G_IO_ERROR, |
1153 | 1108 | GCancellable *cancellable, |
1154 | 1109 | GError **error) |
1155 | 1110 | { |
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); | |
1176 | 1112 | } |
1177 | 1113 | |
1178 | 1114 | gboolean |
1179 | file_move (GFile *source, | |
1115 | file_copy (GFile *source, | |
1180 | 1116 | GFile *destination, |
1181 | 1117 | GFileCopyFlags flags, |
1182 | 1118 | GCancellable *cancellable, |
1191 | 1127 | gboolean res; |
1192 | 1128 | GFile *real_file = g_file_new_for_uri (priv->info->uri); |
1193 | 1129 | |
1194 | res = g_file_move (real_file, | |
1130 | res = g_file_copy (real_file, | |
1195 | 1131 | destination, |
1196 | 1132 | flags, |
1197 | 1133 | cancellable, |
1342 | 1278 | iface->set_attributes_from_info = file_set_attributes_from_info; |
1343 | 1279 | iface->read_fn = file_read_fn; |
1344 | 1280 | iface->append_to = file_append_to; |
1345 | iface->create = file_create; | |
1281 | // iface->create = file_create; ### Don't support | |
1346 | 1282 | iface->replace = file_replace; |
1347 | 1283 | iface->open_readwrite = file_open_readwrite; |
1348 | iface->create_readwrite = file_create_readwrite; | |
1284 | // iface->create_readwrite = file_create_readwrite; ### Don't support | |
1349 | 1285 | iface->replace_readwrite = file_replace_readwrite; |
1350 | 1286 | iface->delete_file = file_delete; |
1351 | 1287 | iface->trash = file_trash; |
1352 | 1288 | // iface->make_directory = file_make_directory; ### Don't support |
1353 | 1289 | // iface->make_symbolic_link = file_make_symbolic_link; ### Don't support |
1354 | iface->move = file_move; | |
1290 | iface->copy = file_copy; | |
1355 | 1291 | iface->monitor_dir = file_monitor_dir; |
1356 | 1292 | iface->monitor_file = file_monitor_file; |
1357 | 1293 | iface->measure_disk_usage = file_measure_disk_usage; |
3 | 3 | #include "xapp-favorites.h" |
4 | 4 | #include "favorite-vfs-file.h" |
5 | 5 | |
6 | /* Gtk module justification: | |
6 | #define ICON_OVERRIDE_VAR "XAPP_FORCE_GTKWINDOW_ICON" | |
7 | ||
8 | /* xapp-gtk3-module: | |
7 | 9 | * |
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). | |
10 | 12 | * |
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. | |
17 | 15 | */ |
18 | 16 | |
19 | 17 | void gtk_module_init (gint *argc, gchar ***argv[]); |
20 | 18 | static void (* original_sidebar_constructed) (GObject *object); |
19 | static void (* original_window_realize) (GtkWidget *widget); | |
20 | static void (* original_window_unrealize) (GtkWidget *widget); | |
21 | 21 | |
22 | 22 | static void |
23 | 23 | xapp_sidebar_constructed (GObject *object) |
45 | 45 | g_object_unref (fav_settings); |
46 | 46 | } |
47 | 47 | |
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 | ||
48 | 170 | G_MODULE_EXPORT void gtk_module_init (gint *argc, gchar ***argv[]) { |
49 | GObjectClass *object_class; | |
50 | ||
171 | g_debug ("Initializing XApp GtkModule"); | |
51 | 172 | // This won't instantiate XAppFavorites but will register the uri so |
52 | 173 | // it can be used by apps (like pix which doesn't use the favorites api, |
53 | 174 | // but just adds favorites:/// to its sidebar.) |
54 | 175 | init_favorite_vfs (); |
176 | apply_sidebar_favorites_override (); | |
55 | 177 | |
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 | } | |
60 | 182 | } |
61 | 183 | |
62 | 184 | G_MODULE_EXPORT gchar* g_module_check_init (GModule *module); |
388 | 388 | gchar *valid_app_name, *owned_name; |
389 | 389 | static gint unique_id = 0; |
390 | 390 | |
391 | valid_app_name = g_strdelimit (g_strdup (g_get_application_name ()), ".-,=+~`/", '_'); | |
391 | valid_app_name = g_strdelimit (g_strdup (g_get_prgname ()), ".-,=+~`/", '_'); | |
392 | 392 | owned_name = g_strdup_printf ("%s.%s_%d", MONITOR_NAME, valid_app_name, unique_id++); |
393 | 393 | g_free (valid_app_name); |
394 | 394 |
784 | 784 | obj_server_finalized (gpointer data, |
785 | 785 | GObject *object) |
786 | 786 | { |
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 ()); | |
788 | 788 | |
789 | 789 | if (name_owner_id > 0) |
790 | 790 | { |
800 | 800 | { |
801 | 801 | if (obj_server == NULL) |
802 | 802 | { |
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 ()); | |
804 | 804 | |
805 | 805 | obj_server = g_dbus_object_manager_server_new (ICON_BASE_PATH); |
806 | 806 | g_dbus_object_manager_server_set_connection (obj_server, self->priv->connection); |
864 | 864 | } |
865 | 865 | else |
866 | 866 | { |
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 ()), " .-,=+~`/", '_'); | |
868 | 868 | |
869 | 869 | owner_name = g_strdup_printf ("%s.%s", |
870 | 870 | ICON_NAME, |
1162 | 1162 | case PROP_NAME: |
1163 | 1163 | { |
1164 | 1164 | 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. | |
1166 | 1166 | if (name == NULL || name[0] == '\0') |
1167 | 1167 | { |
1168 | 1168 | break; |
1210 | 1210 | { |
1211 | 1211 | self->priv = xapp_status_icon_get_instance_private (self); |
1212 | 1212 | |
1213 | self->priv->name = g_strdup (g_get_application_name()); | |
1213 | self->priv->name = g_strdup (g_get_prgname()); | |
1214 | 1214 | |
1215 | 1215 | self->priv->state = XAPP_STATUS_ICON_STATE_NO_SUPPORT; |
1216 | 1216 | self->priv->icon_size = FALLBACK_ICON_SIZE; |
1387 | 1387 | * this can be useful in sandboxed environments where a well-defined name is required. If |
1388 | 1388 | * additional icons are created, only the name given to the initial one will be used for dbus, |
1389 | 1389 | * 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. | |
1391 | 1391 | */ |
1392 | 1392 | g_object_class_install_property (gobject_class, PROP_NAME, |
1393 | 1393 | g_param_spec_string ("name", |
1511 | 1511 | |
1512 | 1512 | if (name == NULL || name[0] == '\0') |
1513 | 1513 | { |
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, | |
1515 | 1515 | // and the set_property handler silently ignores nulls, but if this |
1516 | 1516 | // is explicit, warn about it. |
1517 | 1517 | g_warning ("Can't set icon the name to null or empty string"); |
0 | 0 | project('xapp', |
1 | 1 | 'c', |
2 | version : '2.0.4', | |
2 | version : '2.0.5', | |
3 | 3 | default_options : [ 'buildtype=debugoptimized' ], |
4 | 4 | ) |
5 | 5 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | "Language: cy\n" |
19 | 19 | |
20 | 20 | #: libxapp/favorite-vfs-file.c:463 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
7 | 7 | "Project-Id-Version: linuxmint\n" |
8 | 8 | "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
9 | 9 | "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" | |
11 | 11 | "Last-Translator: Kimmo Kujansuu <Unknown>\n" |
12 | 12 | "Language-Team: Finnish <fi@li.org>\n" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
160 | 160 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:7 |
161 | 161 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:11 |
162 | 162 | 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" | |
164 | 164 | |
165 | 165 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:6 |
166 | 166 | msgid "XApp Status Applet Factory" |
167 | msgstr "XApp-ohjelmien tilan sovelmatehdas" | |
167 | msgstr "XApp sovelman tila" | |
168 | 168 | |
169 | 169 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:10 |
170 | 170 | msgid "XApp Status Applet" |
171 | msgstr "XApp-ohjelmien tilasovellus" | |
171 | msgstr "XApp-ohjelman tilasovellus" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
7 | 7 | "Project-Id-Version: linuxmint\n" |
8 | 8 | "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
9 | 9 | "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" | |
12 | 12 | "Language-Team: French (Canada) <fr_CA@li.org>\n" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
21 | msgstr "" | |
21 | msgstr "Favoris" | |
22 | 22 | |
23 | 23 | #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963 |
24 | 24 | #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026 |
27 | 27 | #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239 |
28 | 28 | #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308 |
29 | 29 | msgid "Operation not supported" |
30 | msgstr "" | |
30 | msgstr "Opération non supportée" | |
31 | 31 | |
32 | 32 | #: libxapp/xapp-icon-chooser-button.c:207 |
33 | 33 | #: libxapp/xapp-icon-chooser-dialog.c:639 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
8 | 8 | "MIME-Version: 1.0\n" |
9 | 9 | "Content-Type: text/plain; charset=UTF-8\n" |
10 | 10 | "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" | |
13 | 13 | "Language: hu\n" |
14 | 14 | |
15 | 15 | #: libxapp/favorite-vfs-file.c:463 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | "Language: ie\n" |
19 | 19 | |
20 | 20 | #: libxapp/favorite-vfs-file.c:463 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
7 | 7 | "Project-Id-Version: linuxmint\n" |
8 | 8 | "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
9 | 9 | "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" | |
11 | 11 | "Last-Translator: Changmin Jang <Unknown>\n" |
12 | 12 | "Language-Team: Korean <ko@li.org>\n" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
21 | msgstr "" | |
21 | msgstr "즐겨찾기" | |
22 | 22 | |
23 | 23 | #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963 |
24 | 24 | #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026 |
27 | 27 | #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239 |
28 | 28 | #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308 |
29 | 29 | msgid "Operation not supported" |
30 | msgstr "" | |
30 | msgstr "지원되지 않는 작업입니다" | |
31 | 31 | |
32 | 32 | #: libxapp/xapp-icon-chooser-button.c:207 |
33 | 33 | #: libxapp/xapp-icon-chooser-dialog.c:639 |
49 | 49 | |
50 | 50 | #: libxapp/xapp-icon-chooser-button.c:234 |
51 | 51 | msgid "Category" |
52 | msgstr "" | |
52 | msgstr "카테고리" | |
53 | 53 | |
54 | 54 | #: libxapp/xapp-icon-chooser-button.c:235 |
55 | 55 | msgid "The default category." |
56 | msgstr "" | |
56 | msgstr "기본 카테고리입니다." | |
57 | 57 | |
58 | 58 | #: libxapp/xapp-icon-chooser-dialog.c:98 |
59 | 59 | msgid "Actions" |
138 | 138 | |
139 | 139 | #: libxapp/xapp-icon-chooser-dialog.c:665 |
140 | 140 | msgid "The icon to use by default" |
141 | msgstr "" | |
141 | msgstr "기본으로 사용할 아이콘" | |
142 | 142 | |
143 | 143 | #: libxapp/xapp-icon-chooser-dialog.c:1933 |
144 | 144 | msgid "Select image file" |
154 | 154 | |
155 | 155 | #: status-applets/mate/mate-xapp-status-applet.py:330 |
156 | 156 | msgid "About" |
157 | msgstr "" | |
157 | msgstr "정보" | |
158 | 158 | |
159 | 159 | #: status-applets/mate/mate-xapp-status-applet.py:350 |
160 | 160 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:7 |
161 | 161 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:11 |
162 | 162 | msgid "Area where XApp status icons appear" |
163 | msgstr "" | |
163 | msgstr "XApp 상태 아이콘이 나타나는 영역" | |
164 | 164 | |
165 | 165 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:6 |
166 | 166 | msgid "XApp Status Applet Factory" |
167 | msgstr "" | |
167 | msgstr "XApp 상태 애플릿 팩토리" | |
168 | 168 | |
169 | 169 | #: status-applets/mate/org.x.MateXAppStatusApplet.mate-panel-applet.in.in:10 |
170 | 170 | msgid "XApp Status Applet" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
7 | 7 | "Project-Id-Version: linuxmint\n" |
8 | 8 | "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
9 | 9 | "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" | |
12 | 12 | "Language-Team: Polish <pl@li.org>\n" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
21 | msgstr "" | |
21 | msgstr "Ulubione" | |
22 | 22 | |
23 | 23 | #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963 |
24 | 24 | #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026 |
27 | 27 | #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239 |
28 | 28 | #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308 |
29 | 29 | msgid "Operation not supported" |
30 | msgstr "" | |
30 | msgstr "Operacja nieobsługiwana" | |
31 | 31 | |
32 | 32 | #: libxapp/xapp-icon-chooser-button.c:207 |
33 | 33 | #: libxapp/xapp-icon-chooser-dialog.c:639 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
7 | 7 | "Project-Id-Version: linuxmint\n" |
8 | 8 | "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
9 | 9 | "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" | |
12 | 12 | "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
21 | msgstr "" | |
21 | msgstr "Favoritos" | |
22 | 22 | |
23 | 23 | #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963 |
24 | 24 | #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026 |
27 | 27 | #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239 |
28 | 28 | #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308 |
29 | 29 | msgid "Operation not supported" |
30 | msgstr "" | |
30 | msgstr "Operação não suportada" | |
31 | 31 | |
32 | 32 | #: libxapp/xapp-icon-chooser-button.c:207 |
33 | 33 | #: libxapp/xapp-icon-chooser-dialog.c:639 |
7 | 7 | "Project-Id-Version: linuxmint\n" |
8 | 8 | "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
9 | 9 | "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" | |
12 | 12 | "Language-Team: Romanian <ro@li.org>\n" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
21 | msgstr "" | |
21 | msgstr "Preferințe" | |
22 | 22 | |
23 | 23 | #: libxapp/favorite-vfs-file.c:933 libxapp/favorite-vfs-file.c:963 |
24 | 24 | #: libxapp/favorite-vfs-file.c:992 libxapp/favorite-vfs-file.c:1026 |
27 | 27 | #: libxapp/favorite-vfs-file.c:1204 libxapp/favorite-vfs-file.c:1239 |
28 | 28 | #: libxapp/favorite-vfs-file.c:1269 libxapp/favorite-vfs-file.c:1308 |
29 | 29 | msgid "Operation not supported" |
30 | msgstr "" | |
30 | msgstr "Operația nu este acceptată" | |
31 | 31 | |
32 | 32 | #: libxapp/xapp-icon-chooser-button.c:207 |
33 | 33 | #: libxapp/xapp-icon-chooser-dialog.c:639 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | "Language: sk\n" |
19 | 19 | |
20 | 20 | #: libxapp/favorite-vfs-file.c:463 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | "Language: sr\n" |
19 | 19 | |
20 | 20 | #: libxapp/favorite-vfs-file.c:463 |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |
13 | 13 | "MIME-Version: 1.0\n" |
14 | 14 | "Content-Type: text/plain; charset=UTF-8\n" |
15 | 15 | "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" | |
18 | 18 | |
19 | 19 | #: libxapp/favorite-vfs-file.c:463 |
20 | 20 | msgid "Favorites" |