Fix Copy fallback instruction

This commit is contained in:
Luc Didry
2016-07-19 08:58:06 +02:00
parent 2923180f0c
commit 4d2721f533
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -164,8 +164,8 @@ msgstr "Link zur Galerie"
#: themes/default/templates/partial/lutim.js.ep:127
#: themes/default/templates/partial/lutim.js.ep:145
msgid "Hit Enter, then Ctrl+C to copy the short link"
msgstr "Drücke Enter und dann STRG+C um den Kurz-Link zu kopieren."
msgid "Hit Ctrl+C, then Enter to copy the short link"
msgstr "Drücke STRG+C und dann Enter um den Kurz-Link zu kopieren."
#: themes/default/templates/layouts/default.html.ep:45
msgid "Homepage"
+1 -1
View File
@@ -162,7 +162,7 @@ msgstr ""
#: themes/default/templates/partial/lutim.js.ep:127
#: themes/default/templates/partial/lutim.js.ep:145
msgid "Hit Enter, then Ctrl+C to copy the short link"
msgid "Hit Ctrl+C, then Enter to copy the short link"
msgstr ""
#: themes/default/templates/layouts/default.html.ep:45
+2 -2
View File
@@ -164,8 +164,8 @@ msgstr "Enlace a la galería"
#: themes/default/templates/partial/lutim.js.ep:127
#: themes/default/templates/partial/lutim.js.ep:145
msgid "Hit Enter, then Ctrl+C to copy the short link"
msgstr "Presione Ingresar, entonces Ctrl + C para copiar el enlace"
msgid "Hit Ctrl+C, then Enter to copy the short link"
msgstr "Presione Ctrl + C, entonces Ingresar para copiar el enlace"
#: themes/default/templates/layouts/default.html.ep:45
msgid "Homepage"
+2 -2
View File
@@ -164,8 +164,8 @@ msgstr "Lien vers la galerie"
#: themes/default/templates/partial/lutim.js.ep:127
#: themes/default/templates/partial/lutim.js.ep:145
msgid "Hit Enter, then Ctrl+C to copy the short link"
msgstr "Appuyez sur la touche Entrée puis faites Ctrl+C pour copier le lien"
msgid "Hit Ctrl+C, then Enter to copy the short link"
msgstr "Faites Ctrl+C puis appuyez sur la touche Entrée pour copier le lien"
#: themes/default/templates/layouts/default.html.ep:45
msgid "Homepage"
+2 -2
View File
@@ -124,7 +124,7 @@
throw new Error('Copying text command was ' + msg);
}
} catch (err) {
prompt('<%= l('Hit Enter, then Ctrl+C to copy the short link') %>', el.val());
prompt('<%= l('Hit Ctrl+C, then Enter to copy the short link') %>', el.val());
}
}
function copyAllToClipboard() {
@@ -142,7 +142,7 @@
throw new Error('Copying text command was ' + msg);
}
} catch (err) {
prompt('<%= l('Hit Enter, then Ctrl+C to copy the short link') %>', text.join(" "));
prompt('<%= l('Hit Ctrl+C, then Enter to copy the short link') %>', text.join(" "));
}
}