Added German (Switzerland) (de_CH) Part 3.

Fixed lint.

Thanks to translators and xet7 !
reviewable/pr3731/r1
Lauri Ojansivu 4 years ago
parent 1b86aeb4f5
commit 6ff9c5b58d
  1. 2
      client/components/activities/comments.js
  2. 2
      client/components/cards/cardDescription.js
  3. 4
      client/components/main/editor.js
  4. 2
      client/components/main/layouts.js
  5. 2
      client/components/users/userHeader.js

@ -3,7 +3,7 @@ const commentFormIsOpen = new ReactiveVar(false);
BlazeComponent.extendComponent({
onDestroyed() {
commentFormIsOpen.set(false);
$(".note-popover").hide();
$('.note-popover').hide();
},
commentFormIsOpen() {

@ -3,7 +3,7 @@ const descriptionFormIsOpen = new ReactiveVar(false);
BlazeComponent.extendComponent({
onDestroyed() {
descriptionFormIsOpen.set(false);
$(".note-popover").hide();
$('.note-popover').hide();
},
descriptionFormIsOpen() {

@ -247,9 +247,7 @@ Template.editor.onRendered(() => {
['float', ['floatLeft', 'floatRight', 'floatNone']],
['remove', ['removeMedia']],
],
link: [
['link', ['linkDialogShow', 'unlink']]
],
link: [['link', ['linkDialogShow', 'unlink']]],
table: [
['add', ['addRowDown', 'addRowUp', 'addColLeft', 'addColRight']],
['delete', ['deleteRow', 'deleteCol', 'deleteTable']],

@ -77,6 +77,8 @@ Template.userFormsLayout.helpers({
} else if (lang.name === 'ar-EG') {
// ar-EG = Arabic (Egypt), simply Masri (مَصرى, [ˈmɑsˤɾi], Egyptian, Masr refers to Cairo)
name = َصرى';
} else if (lang.name === 'de-CH') {
name = 'Schwiizerdütsch';
} else if (lang.name === 'fa-IR') {
// fa-IR = Persian (Iran)
name = 'فارسی/پارسی (ایران)';

@ -174,6 +174,8 @@ Template.changeLanguagePopup.helpers({
} else if (lang.name === 'fa-IR') {
// fa-IR = Persian (Iran)
name = 'فارسی/پارسی (ایران)';
} else if (lang.name === 'de-CH') {
name = 'Schwiizerdütsch';
} else if (lang.name === 'fr-BE') {
name = 'Français (Belgique)';
} else if (lang.name === 'fr-CA') {

Loading…
Cancel
Save