[gthumb] use the unicode ellipsis character instead of three dots
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gthumb] use the unicode ellipsis character instead of three dots
- Date: Sat, 9 Nov 2013 20:11:47 +0000 (UTC)
commit c17310c033ff96918e1780a6573e2d53bf096bb3
Author: Paolo Bacchilega <paobac src gnome org>
Date: Tue Nov 5 19:41:06 2013 +0100
use the unicode ellipsis character instead of three dots
extensions/change_date/callbacks.c | 2 +-
extensions/contact_sheet/callbacks.c | 4 ++--
extensions/convert_format/callbacks.c | 2 +-
extensions/file_viewer/gth-file-viewer-page.c | 2 +-
extensions/find_duplicates/callbacks.c | 2 +-
extensions/find_duplicates/gth-find-duplicates.c | 2 +-
extensions/oauth/oauth-account-chooser-dialog.c | 2 +-
extensions/oauth/web-service.c | 2 +-
extensions/photo_importer/callbacks.c | 4 ++--
extensions/photo_importer/dlg-photo-importer.c | 2 +-
extensions/picasaweb/callbacks.c | 4 ++--
extensions/resize_images/callbacks.c | 2 +-
extensions/search/gth-search-task.c | 2 +-
extensions/webalbums/callbacks.c | 2 +-
extensions/webalbums/gth-web-exporter.c | 2 +-
gthumb/glib-utils.c | 2 +-
gthumb/gth-browser.c | 2 +-
gthumb/gth-filterbar.c | 2 +-
gthumb/gth-folder-tree.c | 2 +-
19 files changed, 22 insertions(+), 22 deletions(-)
---
diff --git a/extensions/change_date/callbacks.c b/extensions/change_date/callbacks.c
index f555f3f..114a907 100644
--- a/extensions/change_date/callbacks.c
+++ b/extensions/change_date/callbacks.c
@@ -34,7 +34,7 @@ static const GActionEntry actions[] = {
static const GthMenuEntry action_entries[] = {
- { N_("Change _Date..."), "win.change-date", NULL, "change-date-symbolic" }
+ { N_("Change _Date…"), "win.change-date", NULL, "change-date-symbolic" }
};
diff --git a/extensions/contact_sheet/callbacks.c b/extensions/contact_sheet/callbacks.c
index 3047d38..1200956 100644
--- a/extensions/contact_sheet/callbacks.c
+++ b/extensions/contact_sheet/callbacks.c
@@ -34,8 +34,8 @@ static const GActionEntry actions[] = {
};
static const GthMenuEntry action_entries[] = {
- { N_("Contact _Sheet..."), "win.create-contact-sheet" },
- { N_("Image _Wall..."), "win.create-image-wall" }
+ { N_("Contact _Sheet…"), "win.create-contact-sheet" },
+ { N_("Image _Wall…"), "win.create-image-wall" }
};
diff --git a/extensions/convert_format/callbacks.c b/extensions/convert_format/callbacks.c
index e3bca59..166132f 100644
--- a/extensions/convert_format/callbacks.c
+++ b/extensions/convert_format/callbacks.c
@@ -34,7 +34,7 @@ static const GActionEntry actions[] = {
static const GthMenuEntry action_entries[] = {
- { N_("Convert Format..."), "win.convert-format", NULL, "convert-format-symbolic" }
+ { N_("Convert Format…"), "win.convert-format", NULL, "convert-format-symbolic" }
};
diff --git a/extensions/file_viewer/gth-file-viewer-page.c b/extensions/file_viewer/gth-file-viewer-page.c
index ca4a37d..b6141e6 100644
--- a/extensions/file_viewer/gth-file-viewer-page.c
+++ b/extensions/file_viewer/gth-file-viewer-page.c
@@ -111,7 +111,7 @@ gth_file_viewer_page_real_activate (GthViewerPage *base,
gtk_widget_show (self->priv->icon);
gtk_box_pack_start (GTK_BOX (vbox2), self->priv->icon, FALSE, FALSE, 0);
- self->priv->label = gtk_label_new ("...");
+ self->priv->label = gtk_label_new ("…");
gtk_label_set_selectable (GTK_LABEL (self->priv->label), TRUE);
gtk_widget_show (self->priv->label);
gtk_box_pack_start (GTK_BOX (vbox2), self->priv->label, FALSE, FALSE, 0);
diff --git a/extensions/find_duplicates/callbacks.c b/extensions/find_duplicates/callbacks.c
index 5c65470..578d596 100644
--- a/extensions/find_duplicates/callbacks.c
+++ b/extensions/find_duplicates/callbacks.c
@@ -34,7 +34,7 @@ static const GActionEntry actions[] = {
static const GthMenuEntry action_entries[] = {
- { N_("Find _Duplicates..."), "win.find-duplicates" }
+ { N_("Find _Duplicates…"), "win.find-duplicates" }
};
diff --git a/extensions/find_duplicates/gth-find-duplicates.c
b/extensions/find_duplicates/gth-find-duplicates.c
index e0fa2a0..6aec567 100644
--- a/extensions/find_duplicates/gth-find-duplicates.c
+++ b/extensions/find_duplicates/gth-find-duplicates.c
@@ -64,7 +64,7 @@ typedef struct {
SelectCommand select_commands[] = {
{ N_("leave the newest duplicates"), SELECT_LEAVE_NEWEST },
{ N_("leave the oldest duplicates"), SELECT_LEAVE_OLDEST },
- { N_("by folder..."), SELECT_BY_FOLDER },
+ { N_("by folder…"), SELECT_BY_FOLDER },
{ N_("all files"), SELECT_ALL },
{ N_("no file"), SELECT_NONE }
};
diff --git a/extensions/oauth/oauth-account-chooser-dialog.c b/extensions/oauth/oauth-account-chooser-dialog.c
index 03101d7..12788d8 100644
--- a/extensions/oauth/oauth-account-chooser-dialog.c
+++ b/extensions/oauth/oauth-account-chooser-dialog.c
@@ -197,7 +197,7 @@ oauth_account_chooser_dialog_construct (OAuthAccountChooserDialog *self,
gtk_list_store_append (GTK_LIST_STORE (GET_WIDGET ("account_liststore")), &iter);
gtk_list_store_set (GTK_LIST_STORE (GET_WIDGET ("account_liststore")), &iter,
ACCOUNT_DATA_COLUMN, NULL,
- ACCOUNT_NAME_COLUMN, _("New authentication..."),
+ ACCOUNT_NAME_COLUMN, _("New authentication…"),
ACCOUNT_SEPARATOR_COLUMN, FALSE,
ACCOUNT_ICON_COLUMN, GTK_STOCK_NEW,
-1);
diff --git a/extensions/oauth/web-service.c b/extensions/oauth/web-service.c
index 4c729a3..6025679 100644
--- a/extensions/oauth/web-service.c
+++ b/extensions/oauth/web-service.c
@@ -375,7 +375,7 @@ show_authentication_error_dialog (WebService *self,
GTK_STOCK_DIALOG_ERROR,
_("Could not connect to the server"),
(*error)->message,
- _("Choose _Account..."), WEB_AUTHENTICATION_RESPONSE_CHOOSE_ACCOUNT,
+ _("Choose _Account…"), WEB_AUTHENTICATION_RESPONSE_CHOOSE_ACCOUNT,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
NULL);
gth_task_dialog (GTH_TASK (self), TRUE, dialog);
diff --git a/extensions/photo_importer/callbacks.c b/extensions/photo_importer/callbacks.c
index 47a044d..9bdc33c 100644
--- a/extensions/photo_importer/callbacks.c
+++ b/extensions/photo_importer/callbacks.c
@@ -37,8 +37,8 @@ static const GActionEntry actions[] = {
static const GthMenuEntry action_entries[] = {
- { N_("_Removable Device..."), "win.import-device", NULL, "camera-photo-symbolic" },
- { N_("F_older..."), "win.import-folder", NULL, "folder-symbolic" }
+ { N_("_Removable Device…"), "win.import-device", NULL, "camera-photo-symbolic" },
+ { N_("F_older…"), "win.import-folder", NULL, "folder-symbolic" }
};
diff --git a/extensions/photo_importer/dlg-photo-importer.c b/extensions/photo_importer/dlg-photo-importer.c
index 52a1224..1f4d62c 100644
--- a/extensions/photo_importer/dlg-photo-importer.c
+++ b/extensions/photo_importer/dlg-photo-importer.c
@@ -366,7 +366,7 @@ list_source_files (gpointer user_data)
return;
}
- gth_file_list_clear (GTH_FILE_LIST (data->file_list), _("Getting folder listing..."));
+ gth_file_list_clear (GTH_FILE_LIST (data->file_list), _("Getting folder listing…"));
data->loading_list = TRUE;
list = g_list_prepend (NULL, data->source);
diff --git a/extensions/picasaweb/callbacks.c b/extensions/picasaweb/callbacks.c
index 14e45f7..43374b3 100644
--- a/extensions/picasaweb/callbacks.c
+++ b/extensions/picasaweb/callbacks.c
@@ -46,13 +46,13 @@ pw__gth_browser_construct_cb (GthBrowser *browser)
browser);
gth_menu_manager_append_entry (gth_browser_get_menu_manager (browser,
GTH_BROWSER_MENU_MANAGER_WEB_EXPORTERS),
GTH_MENU_MANAGER_NEW_MERGE_ID,
- _("_Picasa Web Album..."),
+ _("_Picasa Web Album…"),
"win.export-picasaweb",
NULL,
"site-picasaweb");
gth_menu_manager_append_entry (gth_browser_get_menu_manager (browser,
GTH_BROWSER_MENU_MANAGER_WEB_IMPORTERS),
GTH_MENU_MANAGER_NEW_MERGE_ID,
- _("_Picasa Web Album..."),
+ _("_Picasa Web Album…"),
"win.import-picasaweb",
NULL,
"site-picasaweb");
diff --git a/extensions/resize_images/callbacks.c b/extensions/resize_images/callbacks.c
index 65e930c..402050f 100644
--- a/extensions/resize_images/callbacks.c
+++ b/extensions/resize_images/callbacks.c
@@ -34,7 +34,7 @@ static const GActionEntry actions[] = {
static const GthMenuEntry action_entries[] = {
- { N_("Resize Images..."), "win.resize-images", NULL, "image-resize-symbolic" }
+ { N_("Resize Images…"), "win.resize-images", NULL, "image-resize-symbolic" }
};
diff --git a/extensions/search/gth-search-task.c b/extensions/search/gth-search-task.c
index 6f948f7..6a881f4 100644
--- a/extensions/search/gth-search-task.c
+++ b/extensions/search/gth-search-task.c
@@ -268,7 +268,7 @@ browser_location_ready_cb (GthBrowser *browser,
task->priv->dialog = gth_browser_get_list_info_bar (browser);
gth_info_bar_set_icon_name (GTH_INFO_BAR (task->priv->dialog), "edit-find-symbolic",
GTK_ICON_SIZE_BUTTON);
- gth_info_bar_set_primary_text (GTH_INFO_BAR (task->priv->dialog), _("Searching..."));
+ gth_info_bar_set_primary_text (GTH_INFO_BAR (task->priv->dialog), _("Searching…"));
update_secondary_text (task);
_gtk_info_bar_clear_action_area (GTK_INFO_BAR (task->priv->dialog));
gtk_widget_show (task->priv->dialog);
diff --git a/extensions/webalbums/callbacks.c b/extensions/webalbums/callbacks.c
index a8791eb..eba55ef 100644
--- a/extensions/webalbums/callbacks.c
+++ b/extensions/webalbums/callbacks.c
@@ -44,7 +44,7 @@ wa__gth_browser_construct_cb (GthBrowser *browser)
browser);
gth_menu_manager_append_entry (gth_browser_get_menu_manager (browser,
GTH_BROWSER_MENU_MANAGER_OTHER_EXPORTERS),
GTH_MENU_MANAGER_NEW_MERGE_ID,
- _("_Web Album..."),
+ _("_Web Album…"),
"win.create-web-album",
NULL,
NULL);
diff --git a/extensions/webalbums/gth-web-exporter.c b/extensions/webalbums/gth-web-exporter.c
index bc9c81b..b49eab3 100644
--- a/extensions/webalbums/gth-web-exporter.c
+++ b/extensions/webalbums/gth-web-exporter.c
@@ -742,7 +742,7 @@ get_image_attribute (GthWebExporter *self,
truncated = g_strndup (value, max_length);
if (strlen (truncated) < strlen (value))
- line = g_strconcat (truncated, "...", NULL);
+ line = g_strconcat (truncated, "…", NULL);
else
line = g_strdup (truncated);
diff --git a/gthumb/glib-utils.c b/gthumb/glib-utils.c
index 45defba..cd42e83 100644
--- a/gthumb/glib-utils.c
+++ b/gthumb/glib-utils.c
@@ -665,7 +665,7 @@ _g_strdup_with_max_size (const char *s,
offset = half_max_size + l - max_size;
second_half = g_strndup (s + offset, half_max_size);
- result = g_strconcat (first_half, "...", second_half, NULL);
+ result = g_strconcat (first_half, "…", second_half, NULL);
g_free (first_half);
g_free (second_half);
diff --git a/gthumb/gth-browser.c b/gthumb/gth-browser.c
index 8398511..bd2b6cb 100644
--- a/gthumb/gth-browser.c
+++ b/gthumb/gth-browser.c
@@ -1743,7 +1743,7 @@ _gth_browser_load (GthBrowser *browser,
case GTH_ACTION_GO_FORWARD:
case GTH_ACTION_GO_TO:
case GTH_ACTION_VIEW:
- gth_file_list_clear (GTH_FILE_LIST (browser->priv->file_list), _("Getting folder
listing..."));
+ gth_file_list_clear (GTH_FILE_LIST (browser->priv->file_list), _("Getting the folder
content…"));
break;
default:
break;
diff --git a/gthumb/gth-filterbar.c b/gthumb/gth-filterbar.c
index 2da03f2..73be931 100644
--- a/gthumb/gth-filterbar.c
+++ b/gthumb/gth-filterbar.c
@@ -301,7 +301,7 @@ update_filter_list (GthFilterbar *filterbar,
gtk_list_store_append (filterbar->priv->model, &iter);
gtk_list_store_set (filterbar->priv->model, &iter,
TYPE_COLUMN, ITEM_TYPE_PERSONALIZE,
- NAME_COLUMN, _("Personalize..."),
+ NAME_COLUMN, _("Personalize…"),
-1);
if (no_filter_selected) {
diff --git a/gthumb/gth-folder-tree.c b/gthumb/gth-folder-tree.c
index e418d12..eb7880c 100644
--- a/gthumb/gth-folder-tree.c
+++ b/gthumb/gth-folder-tree.c
@@ -1064,7 +1064,7 @@ _gth_folder_tree_add_loading_item (GthFolderTree *folder_tree,
gtk_tree_store_set (folder_tree->priv->tree_store, &iter,
COLUMN_STYLE, PANGO_STYLE_ITALIC,
COLUMN_TYPE, ENTRY_TYPE_LOADING,
- COLUMN_NAME, _("Loading..."),
+ COLUMN_NAME, _("Loading…"),
COLUMN_SORT_KEY, sort_key,
COLUMN_SORT_ORDER, 0,
-1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]