mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Added German (Switzerland) (de_CH) Part 3.
Fixed lint. Thanks to translators and xet7 !
This commit is contained in:
parent
1b86aeb4f5
commit
6ff9c5b58d
5 changed files with 8 additions and 6 deletions
|
|
@ -3,7 +3,7 @@ const commentFormIsOpen = new ReactiveVar(false);
|
||||||
BlazeComponent.extendComponent({
|
BlazeComponent.extendComponent({
|
||||||
onDestroyed() {
|
onDestroyed() {
|
||||||
commentFormIsOpen.set(false);
|
commentFormIsOpen.set(false);
|
||||||
$(".note-popover").hide();
|
$('.note-popover').hide();
|
||||||
},
|
},
|
||||||
|
|
||||||
commentFormIsOpen() {
|
commentFormIsOpen() {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ const descriptionFormIsOpen = new ReactiveVar(false);
|
||||||
BlazeComponent.extendComponent({
|
BlazeComponent.extendComponent({
|
||||||
onDestroyed() {
|
onDestroyed() {
|
||||||
descriptionFormIsOpen.set(false);
|
descriptionFormIsOpen.set(false);
|
||||||
$(".note-popover").hide();
|
$('.note-popover').hide();
|
||||||
},
|
},
|
||||||
|
|
||||||
descriptionFormIsOpen() {
|
descriptionFormIsOpen() {
|
||||||
|
|
|
||||||
|
|
@ -247,9 +247,7 @@ Template.editor.onRendered(() => {
|
||||||
['float', ['floatLeft', 'floatRight', 'floatNone']],
|
['float', ['floatLeft', 'floatRight', 'floatNone']],
|
||||||
['remove', ['removeMedia']],
|
['remove', ['removeMedia']],
|
||||||
],
|
],
|
||||||
link: [
|
link: [['link', ['linkDialogShow', 'unlink']]],
|
||||||
['link', ['linkDialogShow', 'unlink']]
|
|
||||||
],
|
|
||||||
table: [
|
table: [
|
||||||
['add', ['addRowDown', 'addRowUp', 'addColLeft', 'addColRight']],
|
['add', ['addRowDown', 'addRowUp', 'addColLeft', 'addColRight']],
|
||||||
['delete', ['deleteRow', 'deleteCol', 'deleteTable']],
|
['delete', ['deleteRow', 'deleteCol', 'deleteTable']],
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,8 @@ Template.userFormsLayout.helpers({
|
||||||
} else if (lang.name === 'ar-EG') {
|
} else if (lang.name === 'ar-EG') {
|
||||||
// ar-EG = Arabic (Egypt), simply Masri (مَصرى, [ˈmɑsˤɾi], Egyptian, Masr refers to Cairo)
|
// ar-EG = Arabic (Egypt), simply Masri (مَصرى, [ˈmɑsˤɾi], Egyptian, Masr refers to Cairo)
|
||||||
name = 'مَصرى';
|
name = 'مَصرى';
|
||||||
|
} else if (lang.name === 'de-CH') {
|
||||||
|
name = 'Schwiizerdütsch';
|
||||||
} else if (lang.name === 'fa-IR') {
|
} else if (lang.name === 'fa-IR') {
|
||||||
// fa-IR = Persian (Iran)
|
// fa-IR = Persian (Iran)
|
||||||
name = 'فارسی/پارسی (ایران)';
|
name = 'فارسی/پارسی (ایران)';
|
||||||
|
|
|
||||||
|
|
@ -174,6 +174,8 @@ Template.changeLanguagePopup.helpers({
|
||||||
} else if (lang.name === 'fa-IR') {
|
} else if (lang.name === 'fa-IR') {
|
||||||
// fa-IR = Persian (Iran)
|
// fa-IR = Persian (Iran)
|
||||||
name = 'فارسی/پارسی (ایران)';
|
name = 'فارسی/پارسی (ایران)';
|
||||||
|
} else if (lang.name === 'de-CH') {
|
||||||
|
name = 'Schwiizerdütsch';
|
||||||
} else if (lang.name === 'fr-BE') {
|
} else if (lang.name === 'fr-BE') {
|
||||||
name = 'Français (Belgique)';
|
name = 'Français (Belgique)';
|
||||||
} else if (lang.name === 'fr-CA') {
|
} else if (lang.name === 'fr-CA') {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue