summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wimpress <[email protected]>2015-06-09 22:26:27 +0100
committerMartin Wimpress <[email protected]>2015-06-09 22:26:27 +0100
commitf60b5cb313b654553f1837b92c6306e1d15dc6ed (patch)
treee192d008d980ee4de1f64ac452467007be920e29
parent94ad319b51bff9c5d05bcc8a9b4d9052ebe282da (diff)
parent4678d3a77749faf6c7dd54d7a4f592d729d00de6 (diff)
downloadcaja-extensions-f60b5cb313b654553f1837b92c6306e1d15dc6ed.tar.bz2
caja-extensions-f60b5cb313b654553f1837b92c6306e1d15dc6ed.tar.xz
Merge pull request #17 from piotrjurkiewicz/master
Consistent capitalization of commands
-rw-r--r--open-terminal/caja-open-terminal.c4
-rw-r--r--sendto/caja-nste.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/open-terminal/caja-open-terminal.c b/open-terminal/caja-open-terminal.c
index f7b20eb..488daba 100644
--- a/open-terminal/caja-open-terminal.c
+++ b/open-terminal/caja-open-terminal.c
@@ -420,7 +420,7 @@ open_terminal_menu_item_new (TerminalFileInfo terminal_file_info,
switch (terminal_file_info) {
case FILE_INFO_LOCAL:
case FILE_INFO_SFTP:
- name = _("Open In _Terminal");
+ name = _("Open in _Terminal");
if (is_file_item) {
tooltip = _("Open the currently selected folder in a terminal");
} else {
@@ -433,7 +433,7 @@ open_terminal_menu_item_new (TerminalFileInfo terminal_file_info,
name = _("Open _Terminal");
tooltip = _("Open a terminal");
} else {
- name = _("Open In _Terminal");
+ name = _("Open in _Terminal");
tooltip = _("Open the currently open folder in a terminal");
}
break;
diff --git a/sendto/caja-nste.c b/sendto/caja-nste.c
index 62b62b4..9814f74 100644
--- a/sendto/caja-nste.c
+++ b/sendto/caja-nste.c
@@ -75,12 +75,12 @@ caja_nste_get_file_items (CajaMenuProvider *provider,
if (one_item &&
!caja_file_info_is_directory ((CajaFileInfo *)files->data)) {
item = caja_menu_item_new ("CajaNste::sendto",
- _("Send To..."),
+ _("Send to..."),
_("Send file by mail, instant message..."),
"document-send");
} else {
item = caja_menu_item_new ("CajaNste::sendto",
- _("Send To..."),
+ _("Send to..."),
_("Send files by mail, instant message..."),
"document-send");
}