summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel <DanielF847@gmail.com>2016-02-28 23:10:52 -0600
committerDaniel <DanielF847@gmail.com>2016-02-28 23:10:52 -0600
commitc05029d40312bdc57d99be1d792a1d592c17d029 (patch)
treea0d22d131adb8e7c881db7f4e8ac859166b09880
parentdc05b01ee1d36e7c7be4dff76c4a204ad86a237a (diff)
downloadwekan-c05029d40312bdc57d99be1d792a1d592c17d029.tar.gz
wekan-c05029d40312bdc57d99be1d792a1d592c17d029.tar.bz2
wekan-c05029d40312bdc57d99be1d792a1d592c17d029.zip
Changes in code to correct the spelling of emoji (plural)
-rwxr-xr-x[-rw-r--r--]CHANGELOG.md4
-rwxr-xr-x[-rw-r--r--]client/components/main/editor.js4
-rwxr-xr-x[-rw-r--r--]client/lib/keyboard.js2
-rwxr-xr-x[-rw-r--r--]i18n/ar.i18n.json4
-rwxr-xr-xi18n/ca.i18n.json2
-rwxr-xr-x[-rw-r--r--]i18n/de.i18n.json4
-rwxr-xr-xi18n/en.i18n.json2
-rwxr-xr-xi18n/es.i18n.json2
-rwxr-xr-x[-rw-r--r--]i18n/fi.i18n.json4
-rwxr-xr-xi18n/fr.i18n.json2
-rwxr-xr-xi18n/it.i18n.json2
-rwxr-xr-xi18n/ja.i18n.json2
-rwxr-xr-xi18n/ko.i18n.json2
-rwxr-xr-xi18n/pt-BR.i18n.json2
-rwxr-xr-xi18n/ru.i18n.json2
-rwxr-xr-xi18n/tr.i18n.json2
-rwxr-xr-x[-rw-r--r--]i18n/zh-CN.i18n.json4
-rwxr-xr-x[-rw-r--r--]meta/t9n-changelog/fr.md4
18 files changed, 25 insertions, 25 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0714a5f4..629b7fee 100644..100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -98,8 +98,8 @@ the popover was new). New features includes:
* Assign and unassign members to cards;
* Archive cards (though restoration is not yet possible);
* Board stars;
-* Markdown and emojies support in comments and card description;
-* Emojies auto-completion in the text editor;
+* Markdown and emoji support in comments and card description;
+* Emoji auto-completion in the text editor;
* Some keyboard shortcuts (eg `Ctrl`+`Enter` to submit a multi-line input).
We also introduced basic support for the [Sandstorm](https://sandstorm.io)
diff --git a/client/components/main/editor.js b/client/components/main/editor.js
index a30a5e1d..709d22e2 100644..100755
--- a/client/components/main/editor.js
+++ b/client/components/main/editor.js
@@ -4,7 +4,7 @@ Template.editor.onRendered(() => {
autosize($textarea);
$textarea.escapeableTextComplete([
- // Emojies
+ // Emoji
{
match: /\B:([\-+\w]*)$/,
search(term, callback) {
@@ -45,7 +45,7 @@ Template.editor.onRendered(() => {
});
// XXX I believe we should compute a HTML rendered field on the server that
-// would handle markdown, emojies and user mentions. We can simply have two
+// would handle markdown, emoji and user mentions. We can simply have two
// fields, one source, and one compiled version (in HTML) and send only the
// compiled version to most users -- who don't need to edit.
// In the meantime, all the transformation are done on the client using the
diff --git a/client/lib/keyboard.js b/client/lib/keyboard.js
index f8212c9b..ff18738b 100644..100755
--- a/client/lib/keyboard.js
+++ b/client/lib/keyboard.js
@@ -88,7 +88,7 @@ Template.keyboardShortcuts.helpers({
action: 'shortcut-autocomplete-members',
}, {
keys: [':'],
- action: 'shortcut-autocomplete-emojies',
+ action: 'shortcut-autocomplete-emoji',
}, {
keys: ['SPACE'],
action: 'shortcut-assign-self',
diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json
index 109707fc..225b0975 100644..100755
--- a/i18n/ar.i18n.json
+++ b/i18n/ar.i18n.json
@@ -234,7 +234,7 @@
"search": "بحث",
"select-color": "اختيار لون",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "الإكمال التلقائي للرموز التعبيرية",
+ "shortcut-autocomplete-emoji": "الإكمال التلقائي للرموز التعبيرية",
"shortcut-autocomplete-members": "الإكمال التلقائي لأسماء الأعضاء",
"shortcut-clear-filters": "مسح التصفيات",
"shortcut-close-dialog": "غلق النافذة",
@@ -260,4 +260,4 @@
"view-it": "شاهدها",
"warn-list-archived": "انتبه : هذه البطاقة في أرشيف القائمات",
"what-to-do": "ماذا تريد أن تنجز?"
-} \ No newline at end of file
+}
diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json
index 2593687d..fa223d02 100755
--- a/i18n/ca.i18n.json
+++ b/i18n/ca.i18n.json
@@ -234,7 +234,7 @@
"search": "Cerca",
"select-color": "Selecciona un color",
"shortcut-assign-self": "Assigna't la ftixa actual",
- "shortcut-autocomplete-emojies": "Autocompleta emoji",
+ "shortcut-autocomplete-emoji": "Autocompleta emoji",
"shortcut-autocomplete-members": "Autocompleta membres",
"shortcut-clear-filters": "Elimina tots els filters",
"shortcut-close-dialog": "Tanca el diàleg",
diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json
index d0c57523..43e12d88 100644..100755
--- a/i18n/de.i18n.json
+++ b/i18n/de.i18n.json
@@ -234,7 +234,7 @@
"search": "Suchen",
"select-color": "Wähle eine Farbe aus",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autovervollständige Emojis",
+ "shortcut-autocomplete-emoji": "Autovervollständige Emojis",
"shortcut-autocomplete-members": "Autovervollständige Nutzer",
"shortcut-clear-filters": "Alle Filter entfernen",
"shortcut-close-dialog": "Dialog schließen",
@@ -260,4 +260,4 @@
"view-it": "Ansehen",
"warn-list-archived": "Warnung: Diese Karte befindet sich in einer archivierten Liste",
"what-to-do": "Was willst du tun?"
-} \ No newline at end of file
+}
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index 022d5242..47d8c25c 100755
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -260,7 +260,7 @@
"search": "Search",
"select-color": "Select a color",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autocomplete emoji",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
"shortcut-autocomplete-members": "Autocomplete members",
"shortcut-clear-filters": "Clear all filters",
"shortcut-close-dialog": "Close Dialog",
diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json
index 4cbd1f1d..b4af8f5a 100755
--- a/i18n/es.i18n.json
+++ b/i18n/es.i18n.json
@@ -234,7 +234,7 @@
"search": "Buscar",
"select-color": "Selecciona un color",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autocomplete emoji",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
"shortcut-autocomplete-members": "Autocomplete members",
"shortcut-clear-filters": "Clear all filters",
"shortcut-close-dialog": "Close Dialog",
diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json
index 10515ce2..caab4faf 100644..100755
--- a/i18n/fi.i18n.json
+++ b/i18n/fi.i18n.json
@@ -234,7 +234,7 @@
"search": "Etsi",
"select-color": "Valitse väri",
"shortcut-assign-self": "Valitse itsesi nykyiselle kortille",
- "shortcut-autocomplete-emojies": "Automaattinen täydennys emojille",
+ "shortcut-autocomplete-emoji": "Automaattinen täydennys emojille",
"shortcut-autocomplete-members": "Automaattinen täydennys jäsenille",
"shortcut-clear-filters": "Poista kaikki suodattimet",
"shortcut-close-dialog": "Sulje valintaikkuna",
@@ -260,4 +260,4 @@
"view-it": "Näytä se",
"warn-list-archived": "varoitus: tämä kortti on arkistoitujen listalla",
"what-to-do": "Mitä haluat tehdä?"
-} \ No newline at end of file
+}
diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json
index 882f9dcf..0642308c 100755
--- a/i18n/fr.i18n.json
+++ b/i18n/fr.i18n.json
@@ -228,7 +228,7 @@
"search": "Chercher",
"select-color": "Choisissez une couleur",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Auto-complétion des emoji",
+ "shortcut-autocomplete-emoji": "Auto-complétion des emoji",
"shortcut-autocomplete-members": "Auto-complétion des membres",
"shortcut-clear-filters": "Retirer tous les filtres",
"shortcut-close-dialog": "Fermer le dialogue",
diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json
index 7524ebdd..07026fd4 100755
--- a/i18n/it.i18n.json
+++ b/i18n/it.i18n.json
@@ -234,7 +234,7 @@
"search": "Search",
"select-color": "Select a color",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autocomplete emoji",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
"shortcut-autocomplete-members": "Autocomplete members",
"shortcut-clear-filters": "Clear all filters",
"shortcut-close-dialog": "Close Dialog",
diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json
index 08d30337..6cde68c6 100755
--- a/i18n/ja.i18n.json
+++ b/i18n/ja.i18n.json
@@ -234,7 +234,7 @@
"search": "検索",
"select-color": "色を選択",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autocomplete emoji",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
"shortcut-autocomplete-members": "Autocomplete members",
"shortcut-clear-filters": "Clear all filters",
"shortcut-close-dialog": "Close Dialog",
diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json
index f3194890..823a221d 100755
--- a/i18n/ko.i18n.json
+++ b/i18n/ko.i18n.json
@@ -234,7 +234,7 @@
"search": "검색",
"select-color": "색 선택",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autocomplete emoji",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
"shortcut-autocomplete-members": "Autocomplete members",
"shortcut-clear-filters": "Clear all filters",
"shortcut-close-dialog": "Close Dialog",
diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json
index 381e0caf..51c62f5b 100755
--- a/i18n/pt-BR.i18n.json
+++ b/i18n/pt-BR.i18n.json
@@ -234,7 +234,7 @@
"search": "Buscar",
"select-color": "Selecione uma cor",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Preenchimento automático de emoji",
+ "shortcut-autocomplete-emoji": "Preenchimento automático de emoji",
"shortcut-autocomplete-members": "Preenchimento automático de membros",
"shortcut-clear-filters": "Limpar todos filtros",
"shortcut-close-dialog": "Fechar dialogo",
diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json
index bc7443f8..a2319a27 100755
--- a/i18n/ru.i18n.json
+++ b/i18n/ru.i18n.json
@@ -231,7 +231,7 @@
"search": "Поиск",
"select-color": "Выбрать цвет",
"shortcut-assign-self": "Связать себя с текущей карточкой",
- "shortcut-autocomplete-emojies": "Автозаполнение emoji",
+ "shortcut-autocomplete-emoji": "Автозаполнение emoji",
"shortcut-autocomplete-members": "Автозаполнение пользователей",
"shortcut-clear-filters": "Сбросить все фильтры",
"shortcut-close-dialog": "Закрыть диалог",
diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json
index 47b4cd5f..c05833bb 100755
--- a/i18n/tr.i18n.json
+++ b/i18n/tr.i18n.json
@@ -234,7 +234,7 @@
"search": "Search",
"select-color": "Bir renk seç",
"shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emojies": "Autocomplete emoji",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
"shortcut-autocomplete-members": "Autocomplete members",
"shortcut-clear-filters": "Clear all filters",
"shortcut-close-dialog": "Close Dialog",
diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json
index d622cef5..32eb1516 100644..100755
--- a/i18n/zh-CN.i18n.json
+++ b/i18n/zh-CN.i18n.json
@@ -234,7 +234,7 @@
"search": "搜索",
"select-color": "选择颜色",
"shortcut-assign-self": "分配当前卡片给自己",
- "shortcut-autocomplete-emojies": "自动补全表情",
+ "shortcut-autocomplete-emoji": "自动补全表情",
"shortcut-autocomplete-members": "自动补全成员",
"shortcut-clear-filters": "清空全部过滤器",
"shortcut-close-dialog": "关闭对话框",
@@ -260,4 +260,4 @@
"view-it": "查看",
"warn-list-archived": "警告: 该卡片位于已删除的清单中",
"what-to-do": "要做什么?"
-} \ No newline at end of file
+}
diff --git a/meta/t9n-changelog/fr.md b/meta/t9n-changelog/fr.md
index dd966fbb..fed1fbe6 100644..100755
--- a/meta/t9n-changelog/fr.md
+++ b/meta/t9n-changelog/fr.md
@@ -39,9 +39,9 @@ Les nouvelles fonctionnalités incluent:
* Assigner et retirer l’assignation de membres aux cartes;
* Archiver des cartes (bien que la restauration ne soit pas encore possible);
* Tableaux favoris
-* Support du markdown et des emojies dans les commentaires et la description des
+* Support du markdown et des emoji dans les commentaires et la description des
cartes;
-* Auto-complétion des emojies dans l'éditeur de texte;
+* Auto-complétion des emoji dans l'éditeur de texte;
* Quelques raccourcis clavier (ex `Ctrl`+`Enter` pour envoyer une entrée
multi-lignes).