Mercurial > geeqie
comparison src/bar.c @ 1543:c8ac214a2fca
fixed ambiguous strings
author | nadvornik |
---|---|
date | Sun, 12 Apr 2009 08:36:53 +0000 |
parents | fffb62c7ba1e |
children | c776b1310ca6 |
comparison
equal
deleted
inserted
replaced
1542:ddb7aefb45cb | 1543:c8ac214a2fca |
---|---|
151 {PANE_KEYWORDS, "keywords", N_("Keywords"), default_config_keywords}, | 151 {PANE_KEYWORDS, "keywords", N_("Keywords"), default_config_keywords}, |
152 {PANE_COMMENT, "comment", N_("Comment"), default_config_comment}, | 152 {PANE_COMMENT, "comment", N_("Comment"), default_config_comment}, |
153 {PANE_EXIF, "exif", N_("Exif"), default_config_exif}, | 153 {PANE_EXIF, "exif", N_("Exif"), default_config_exif}, |
154 /* other pre-configured panes */ | 154 /* other pre-configured panes */ |
155 {PANE_EXIF, "file_info", N_("File info"), default_config_file_info}, | 155 {PANE_EXIF, "file_info", N_("File info"), default_config_file_info}, |
156 {PANE_EXIF, "location", N_("Location"), default_config_location}, | 156 {PANE_EXIF, "location", N_("Location and GPS"), default_config_location}, |
157 {PANE_EXIF, "copyright", N_("Copyright"), default_config_copyright}, | 157 {PANE_EXIF, "copyright", N_("Copyright"), default_config_copyright}, |
158 | 158 |
159 {PANE_UNDEF, NULL, NULL, NULL} | 159 {PANE_UNDEF, NULL, NULL, NULL} |
160 }; | 160 }; |
161 | 161 |
275 menu_item_add_stock(menu, _("Move to _top"), GTK_STOCK_GOTO_TOP, G_CALLBACK(bar_expander_move_top_cb), expander); | 275 menu_item_add_stock(menu, _("Move to _top"), GTK_STOCK_GOTO_TOP, G_CALLBACK(bar_expander_move_top_cb), expander); |
276 menu_item_add_stock(menu, _("Move _up"), GTK_STOCK_GO_UP, G_CALLBACK(bar_expander_move_up_cb), expander); | 276 menu_item_add_stock(menu, _("Move _up"), GTK_STOCK_GO_UP, G_CALLBACK(bar_expander_move_up_cb), expander); |
277 menu_item_add_stock(menu, _("Move _down"), GTK_STOCK_GO_DOWN, G_CALLBACK(bar_expander_move_down_cb), expander); | 277 menu_item_add_stock(menu, _("Move _down"), GTK_STOCK_GO_DOWN, G_CALLBACK(bar_expander_move_down_cb), expander); |
278 menu_item_add_stock(menu, _("Move to _bottom"), GTK_STOCK_GOTO_BOTTOM, G_CALLBACK(bar_expander_move_bottom_cb), expander); | 278 menu_item_add_stock(menu, _("Move to _bottom"), GTK_STOCK_GOTO_BOTTOM, G_CALLBACK(bar_expander_move_bottom_cb), expander); |
279 menu_item_add_divider(menu); | 279 menu_item_add_divider(menu); |
280 menu_item_add_stock(menu, pgettext("virtual","Delete"), GTK_STOCK_DELETE, G_CALLBACK(bar_expander_delete_cb), expander); | 280 menu_item_add_stock(menu, _("Remove"), GTK_STOCK_DELETE, G_CALLBACK(bar_expander_delete_cb), expander); |
281 menu_item_add_divider(menu); | 281 menu_item_add_divider(menu); |
282 } | 282 } |
283 | 283 |
284 while (pane->id) | 284 while (pane->id) |
285 { | 285 { |