UI improvments
- Use lanaguage files for tinymce. - Fixed user import error. - Improve colors for default/dark theme. - Fixed missing translation.
This commit is contained in:
parent
3e2b201ee2
commit
a077ca85f5
@ -21,24 +21,31 @@ export abstract class BaseComponent {
|
|||||||
* Settings for the TinyMCE editor selector
|
* Settings for the TinyMCE editor selector
|
||||||
*/
|
*/
|
||||||
public tinyMceSettings = {
|
public tinyMceSettings = {
|
||||||
// TODO: language_url: '/static/tinymce/i18n/' + gettextCatalog.getCurrentLanguage() + '.js',
|
language: null,
|
||||||
// TODO: theme_url: '/static/js/openslides-libs.js',
|
language_url: null,
|
||||||
skin_url: '/assets/tinymce/skins/lightgray',
|
skin_url: '/assets/tinymce/skins/lightgray',
|
||||||
inline: false,
|
inline: false,
|
||||||
statusbar: false,
|
statusbar: false,
|
||||||
browser_spellcheck: true,
|
browser_spellcheck: true,
|
||||||
image_advtab: true,
|
image_advtab: true,
|
||||||
|
image_description: false,
|
||||||
|
link_title: false,
|
||||||
height: 320,
|
height: 320,
|
||||||
// TODO: image_list: images,
|
// TODO: image_list: images,
|
||||||
plugins: `autolink charmap code colorpicker fullscreen image imagetools
|
plugins: `autolink charmap code colorpicker fullscreen image imagetools
|
||||||
lists link paste preview searchreplace textcolor`,
|
lists link paste searchreplace textcolor`,
|
||||||
menubar: '',
|
menubar: '',
|
||||||
toolbar: `undo redo searchreplace | styleselect | bold italic underline strikethrough
|
toolbar: `styleselect | bold italic underline strikethrough
|
||||||
| forecolor backcolor removeformat | bullist numlist | outdent indent |
|
| forecolor backcolor removeformat | bullist numlist |
|
||||||
link image charmap table | code preview fullscreen`
|
link image charmap | code fullscreen`
|
||||||
};
|
};
|
||||||
|
|
||||||
public constructor(protected titleService?: Title, protected translate?: TranslateService) {}
|
public constructor(protected titleService?: Title, protected translate?: TranslateService) {
|
||||||
|
if (this.translate) {
|
||||||
|
this.tinyMceSettings.language_url = '/assets/tinymce/langs/' + this.translate.currentLang + '.js';
|
||||||
|
this.tinyMceSettings.language = this.translate.currentLang;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the title in web browser using angulars TitleService
|
* Set the title in web browser using angulars TitleService
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
display: inherit;
|
display: inherit;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: #eee;
|
|
||||||
|
|
||||||
.mat-card-header-text {
|
.mat-card-header-text {
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
<!-- Title -->
|
<!-- Title -->
|
||||||
<div class="title-slot">
|
<div class="title-slot">
|
||||||
<h2>
|
<h2>
|
||||||
<span *ngIf="!currentListOfSpeakers">List of speakers</span>
|
<span *ngIf="!currentListOfSpeakers" translate>List of speakers</span>
|
||||||
<span *ngIf="currentListOfSpeakers">Current list of speakers</span>
|
<span *ngIf="currentListOfSpeakers" translate>Current list of speakers</span>
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="menu-slot" *osPerms="['agenda.can_manage_list_of_speakers', 'core.can_manage_projector']">
|
<div class="menu-slot" *osPerms="['agenda.can_manage_list_of_speakers', 'core.can_manage_projector']">
|
||||||
@ -25,7 +25,7 @@
|
|||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
||||||
<h1 class="title-left on-transition-fade" *ngIf="viewItem">{{ viewItem.getTitle() }}</h1>
|
<h1 class="title on-transition-fade" *ngIf="viewItem">{{ viewItem.getTitle() }}</h1>
|
||||||
|
|
||||||
<mat-card class="speaker-card" *ngIf="viewItem">
|
<mat-card class="speaker-card" *ngIf="viewItem">
|
||||||
<!-- List of finished speakers -->
|
<!-- List of finished speakers -->
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
.title {
|
||||||
|
margin-left: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
.speaker-card {
|
.speaker-card {
|
||||||
margin: 0 20px 0 20px;
|
margin: 0 20px 0 20px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
<div *ngIf="!isEditMode || !perms.isAllowed('change_metadata')">
|
<div *ngIf="!isEditMode || !perms.isAllowed('change_metadata')">
|
||||||
<mat-chip-list *ngFor="let submitter of motion.submitters" class="user">
|
<mat-chip-list *ngFor="let submitter of motion.submitters" class="user">
|
||||||
<mat-chip>{{ submitter.full_name }}</mat-chip>
|
<mat-chip disableRipple>{{ submitter.full_name }}</mat-chip>
|
||||||
</mat-chip-list>
|
</mat-chip-list>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -152,10 +152,6 @@ span {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-nav-color {
|
|
||||||
color: rgba(0, 0, 0, 0.54);
|
|
||||||
}
|
|
||||||
|
|
||||||
.title-line {
|
.title-line {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.submitters-line {
|
.submitters-line {
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -152,7 +152,9 @@ export class ViewUser extends BaseProjectableViewModel implements Searchable {
|
|||||||
|
|
||||||
const number = this.number ? this.number.trim() : '';
|
const number = this.number ? this.number.trim() : '';
|
||||||
if (number) {
|
if (number) {
|
||||||
additions.push(this.getNumberForName(number));
|
if (this.getNumberForName) {
|
||||||
|
additions.push(this.getNumberForName(number));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (additions.length > 0) {
|
if (additions.length > 0) {
|
||||||
|
@ -45,4 +45,23 @@
|
|||||||
.error {
|
.error {
|
||||||
color: mat-color($warn);
|
color: mat-color($warn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* motion list/detail view */
|
||||||
|
.mat-chip-list.user .mat-chip {
|
||||||
|
color: mat-color($foreground, text);
|
||||||
|
background: mat-color($background, card);
|
||||||
|
border-color: mat-color($background, selected-button);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-nav-color {
|
||||||
|
color: mat-color($foreground, secondary-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submitters-line {
|
||||||
|
color: mat-color($foreground, secondary-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-card-header {
|
||||||
|
background-color: mat-color($background, app-bar);;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
261
client/src/assets/tinymce/langs/cs.js
Normal file
261
client/src/assets/tinymce/langs/cs.js
Normal file
@ -0,0 +1,261 @@
|
|||||||
|
tinymce.addI18n('cs',{
|
||||||
|
"Redo": "Znovu",
|
||||||
|
"Undo": "Zp\u011bt",
|
||||||
|
"Cut": "Vyjmout",
|
||||||
|
"Copy": "Kop\u00edrovat",
|
||||||
|
"Paste": "Vlo\u017eit",
|
||||||
|
"Select all": "Vybrat v\u0161e",
|
||||||
|
"New document": "Nov\u00fd dokument",
|
||||||
|
"Ok": "OK",
|
||||||
|
"Cancel": "Zru\u0161it",
|
||||||
|
"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky",
|
||||||
|
"Bold": "Tu\u010dn\u00e9",
|
||||||
|
"Italic": "Kurz\u00edva",
|
||||||
|
"Underline": "Podtr\u017een\u00e9",
|
||||||
|
"Strikethrough": "P\u0159e\u0161rktnut\u00e9",
|
||||||
|
"Superscript": "Horn\u00ed index",
|
||||||
|
"Subscript": "Doln\u00ed index",
|
||||||
|
"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
|
||||||
|
"Align left": "Zarovnat vlevo",
|
||||||
|
"Align center": "Zarovnat na st\u0159ed",
|
||||||
|
"Align right": "Zarovnat vpravo",
|
||||||
|
"Justify": "Zarovnat do bloku",
|
||||||
|
"Bullet list": "Odr\u00e1\u017eky",
|
||||||
|
"Numbered list": "\u010c\u00edslov\u00e1n\u00ed",
|
||||||
|
"Decrease indent": "Zmen\u0161it odsazen\u00ed",
|
||||||
|
"Increase indent": "Zv\u011bt\u0161it odsazen\u00ed",
|
||||||
|
"Close": "Zav\u0159\u00edt",
|
||||||
|
"Formats": "Form\u00e1ty",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.",
|
||||||
|
"Headers": "Nadpisy",
|
||||||
|
"Header 1": "Nadpis 1",
|
||||||
|
"Header 2": "Nadpis 2",
|
||||||
|
"Header 3": "Nadpis 3",
|
||||||
|
"Header 4": "Nadpis 4",
|
||||||
|
"Header 5": "Nadpis 5",
|
||||||
|
"Header 6": "Nadpis 6",
|
||||||
|
"Headings": "Nadpisy",
|
||||||
|
"Heading 1": "Nadpis 1",
|
||||||
|
"Heading 2": "Nadpis 2",
|
||||||
|
"Heading 3": "Nadpis 3",
|
||||||
|
"Heading 4": "Nadpis 4",
|
||||||
|
"Heading 5": "Nadpis 5",
|
||||||
|
"Heading 6": "Nadpis 6",
|
||||||
|
"Preformatted": "P\u0159edform\u00e1tov\u00e1no",
|
||||||
|
"Div": "Div (blok)",
|
||||||
|
"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)",
|
||||||
|
"Code": "Code (k\u00f3d)",
|
||||||
|
"Paragraph": "Odstavec",
|
||||||
|
"Blockquote": "Citace",
|
||||||
|
"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)",
|
||||||
|
"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.",
|
||||||
|
"Font Family": "Typ p\u00edsma",
|
||||||
|
"Font Sizes": "Velikost p\u00edsma",
|
||||||
|
"Class": "T\u0159\u00edda",
|
||||||
|
"Browse for an image": "Vyhledat obr\u00e1zek",
|
||||||
|
"OR": "nebo",
|
||||||
|
"Drop an image here": "Nahr\u00e1t obr\u00e1zek",
|
||||||
|
"Upload": "Nahr\u00e1t",
|
||||||
|
"Block": "Blok",
|
||||||
|
"Align": "Zarovnat",
|
||||||
|
"Default": "V\u00fdchoz\u00ed",
|
||||||
|
"Circle": "Kole\u010dko",
|
||||||
|
"Disc": "Punt\u00edk",
|
||||||
|
"Square": "\u010ctvere\u010dek",
|
||||||
|
"Lower Alpha": "Norm\u00e1ln\u00ed \u010d\u00edslov\u00e1n\u00ed",
|
||||||
|
"Lower Greek": "Mal\u00e9 p\u00edsmenkov\u00e1n\u00ed",
|
||||||
|
"Lower Roman": "Mal\u00e9 \u0159\u00edmsk\u00e9 \u010d\u00edslice",
|
||||||
|
"Upper Alpha": "velk\u00e9 p\u00edsmenkov\u00e1n\u00ed",
|
||||||
|
"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice",
|
||||||
|
"Anchor": "Kotva",
|
||||||
|
"Name": "N\u00e1zev",
|
||||||
|
"Id": "Id",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id by m\u011blo za\u010d\u00ednat p\u00edsmenem a d\u00e1le obsahovat pouze p\u00edsmena, \u010d\u00edsla, poml\u010dky, te\u010dky, dvojte\u010dky, nebo podtr\u017e\u00edtka.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?",
|
||||||
|
"Restore last draft": "Obnovit posledn\u00ed koncept",
|
||||||
|
"Special character": "Speci\u00e1ln\u00ed znak",
|
||||||
|
"Source code": "Zdrojov\u00fd k\u00f3d",
|
||||||
|
"Insert\/Edit code sample": "Vlo\u017eit \/ Upravit uk\u00e1zkov\u00fd k\u00f3d",
|
||||||
|
"Language": "Jazyk",
|
||||||
|
"Code sample": "Uk\u00e1zkov\u00fd k\u00f3d",
|
||||||
|
"Color": "Barva",
|
||||||
|
"R": "R",
|
||||||
|
"G": "G",
|
||||||
|
"B": "B",
|
||||||
|
"Left to right": "Zleva doprava",
|
||||||
|
"Right to left": "Zprava doleva",
|
||||||
|
"Emoticons": "Emotikony",
|
||||||
|
"Document properties": "Vlastnosti dokumentu",
|
||||||
|
"Title": "Titulek",
|
||||||
|
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
||||||
|
"Description": "Popis",
|
||||||
|
"Robots": "Roboti",
|
||||||
|
"Author": "Autor",
|
||||||
|
"Encoding": "K\u00f3dov\u00e1n\u00ed",
|
||||||
|
"Fullscreen": "Na celou obrazovku",
|
||||||
|
"Action": "Akce",
|
||||||
|
"Shortcut": "Kl\u00e1vesov\u00e1 zkratka",
|
||||||
|
"Help": "N\u00e1pov\u011bda",
|
||||||
|
"Address": "Blok s po\u0161tovn\u00ed adresou",
|
||||||
|
"Focus to menubar": "P\u0159ej\u00edt do menu",
|
||||||
|
"Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f",
|
||||||
|
"Focus to element path": "P\u0159ej\u00edt na element path",
|
||||||
|
"Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f",
|
||||||
|
"Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)",
|
||||||
|
"Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)",
|
||||||
|
"Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)",
|
||||||
|
"Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):",
|
||||||
|
"Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:",
|
||||||
|
"Learn more...": "Zjistit v\u00edce...",
|
||||||
|
"You are using {0}": "Pou\u017e\u00edv\u00e1te {0}",
|
||||||
|
"Plugins": "Pluginy",
|
||||||
|
"Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky",
|
||||||
|
"Horizontal line": "Vodorovn\u00e1 \u010d\u00e1ra",
|
||||||
|
"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek",
|
||||||
|
"Image description": "Popis obr\u00e1zku",
|
||||||
|
"Source": "URL",
|
||||||
|
"Dimensions": "Rozm\u011bry",
|
||||||
|
"Constrain proportions": "Zachovat proporce",
|
||||||
|
"General": "Obecn\u00e9",
|
||||||
|
"Advanced": "Pokro\u010dil\u00e9",
|
||||||
|
"Style": "Styl",
|
||||||
|
"Vertical space": "Vertik\u00e1ln\u00ed mezera",
|
||||||
|
"Horizontal space": "Horizont\u00e1ln\u00ed mezera",
|
||||||
|
"Border": "R\u00e1me\u010dek",
|
||||||
|
"Insert image": "Vlo\u017eit obr\u00e1zek",
|
||||||
|
"Image": "Obr\u00e1zek",
|
||||||
|
"Image list": "Seznam obr\u00e1zk\u016f",
|
||||||
|
"Rotate counterclockwise": "Oto\u010dit doleva",
|
||||||
|
"Rotate clockwise": "Oto\u010dit doprava",
|
||||||
|
"Flip vertically": "P\u0159evr\u00e1tit svisle",
|
||||||
|
"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b",
|
||||||
|
"Edit image": "Upravit obr\u00e1zek",
|
||||||
|
"Image options": "Vlastnosti obr\u00e1zku",
|
||||||
|
"Zoom in": "P\u0159ibl\u00ed\u017eit",
|
||||||
|
"Zoom out": "Odd\u00e1lit",
|
||||||
|
"Crop": "O\u0159\u00edznout",
|
||||||
|
"Resize": "Zm\u011bnit velikost",
|
||||||
|
"Orientation": "Transformovat",
|
||||||
|
"Brightness": "Jas",
|
||||||
|
"Sharpen": "Ostrost",
|
||||||
|
"Contrast": "Kontrast",
|
||||||
|
"Color levels": "\u00darovn\u011b barev",
|
||||||
|
"Gamma": "Gama",
|
||||||
|
"Invert": "Invertovat",
|
||||||
|
"Apply": "Pou\u017e\u00edt",
|
||||||
|
"Back": "Zp\u011bt",
|
||||||
|
"Insert date\/time": "Vlo\u017eit datum \/ \u010das",
|
||||||
|
"Date\/time": "Datum\/\u010das",
|
||||||
|
"Insert link": "Vlo\u017eit odkaz",
|
||||||
|
"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz",
|
||||||
|
"Text to display": "Text k zobrazen\u00ed",
|
||||||
|
"Url": "URL",
|
||||||
|
"Target": "C\u00edl",
|
||||||
|
"None": "\u017d\u00e1dn\u00e9",
|
||||||
|
"New window": "Nov\u00e9 okno",
|
||||||
|
"Remove link": "Odstranit odkaz",
|
||||||
|
"Anchors": "Kotvy",
|
||||||
|
"Link": "Odkaz",
|
||||||
|
"Paste or type a link": "Vlo\u017eit nebo napsat odkaz",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?",
|
||||||
|
"Link list": "Seznam odkaz\u016f",
|
||||||
|
"Insert video": "Vlo\u017eit video",
|
||||||
|
"Insert\/edit video": "Vlo\u017eit \/ upravit video",
|
||||||
|
"Insert\/edit media": "Vlo\u017eit \/ upravit m\u00e9dia",
|
||||||
|
"Alternative source": "Alternativn\u00ed zdroj",
|
||||||
|
"Poster": "N\u00e1hled",
|
||||||
|
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed n\u00ed\u017ee:",
|
||||||
|
"Embed": "Vlo\u017eit",
|
||||||
|
"Media": "M\u00e9dia",
|
||||||
|
"Nonbreaking space": "Pevn\u00e1 mezera",
|
||||||
|
"Page break": "Konec str\u00e1nky",
|
||||||
|
"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text",
|
||||||
|
"Preview": "N\u00e1hled",
|
||||||
|
"Print": "Tisk",
|
||||||
|
"Save": "Ulo\u017eit",
|
||||||
|
"Find": "Naj\u00edt",
|
||||||
|
"Replace with": "Nahradit za",
|
||||||
|
"Replace": "Nahradit",
|
||||||
|
"Replace all": "Nahradit v\u0161e",
|
||||||
|
"Prev": "P\u0159edchoz\u00ed",
|
||||||
|
"Next": "Dal\u0161\u00ed",
|
||||||
|
"Find and replace": "Naj\u00edt a nahradit",
|
||||||
|
"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.",
|
||||||
|
"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena",
|
||||||
|
"Whole words": "Pouze cel\u00e1 slova",
|
||||||
|
"Spellcheck": "Kontrola pravopisu",
|
||||||
|
"Ignore": "Ignorovat",
|
||||||
|
"Ignore all": "Ignorovat v\u0161e",
|
||||||
|
"Finish": "Ukon\u010dit",
|
||||||
|
"Add to Dictionary": "P\u0159idat do slovn\u00edku",
|
||||||
|
"Insert table": "Vlo\u017eit tabulku",
|
||||||
|
"Table properties": "Vlastnosti tabulky",
|
||||||
|
"Delete table": "Smazat tabulku",
|
||||||
|
"Cell": "Bu\u0148ka",
|
||||||
|
"Row": "\u0158\u00e1dek",
|
||||||
|
"Column": "Sloupec",
|
||||||
|
"Cell properties": "Vlastnosti bu\u0148ky",
|
||||||
|
"Merge cells": "Slou\u010dit bu\u0148ky",
|
||||||
|
"Split cell": "Rozd\u011blit bu\u0148ky",
|
||||||
|
"Insert row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||||
|
"Insert row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||||
|
"Delete row": "Smazat \u0159\u00e1dek",
|
||||||
|
"Row properties": "Vlastnosti \u0159\u00e1dku",
|
||||||
|
"Cut row": "Vyjmout \u0159\u00e1dek",
|
||||||
|
"Copy row": "Kop\u00edrovat \u0159\u00e1dek",
|
||||||
|
"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||||
|
"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||||
|
"Insert column before": "Vlo\u017eit sloupec vlevo",
|
||||||
|
"Insert column after": "Vlo\u017eit sloupec vpravo",
|
||||||
|
"Delete column": "Smazat sloupec",
|
||||||
|
"Cols": "Sloupc\u016f",
|
||||||
|
"Rows": "\u0158\u00e1dek",
|
||||||
|
"Width": "\u0160\u00ed\u0159ka",
|
||||||
|
"Height": "V\u00fd\u0161ka",
|
||||||
|
"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk",
|
||||||
|
"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk",
|
||||||
|
"Caption": "Nadpis",
|
||||||
|
"Left": "Vlevo",
|
||||||
|
"Center": "Na st\u0159ed",
|
||||||
|
"Right": "Vpravo",
|
||||||
|
"Cell type": "Typ bu\u0148ky",
|
||||||
|
"Scope": "Rozsah",
|
||||||
|
"Alignment": "Zarovn\u00e1n\u00ed",
|
||||||
|
"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||||
|
"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||||
|
"Top": "Nahoru",
|
||||||
|
"Middle": "Uprost\u0159ed",
|
||||||
|
"Bottom": "Dol\u016f",
|
||||||
|
"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka",
|
||||||
|
"Row group": "Skupina \u0159\u00e1dk\u016f",
|
||||||
|
"Column group": "Skupina sloupc\u016f",
|
||||||
|
"Row type": "Typ \u0159\u00e1dku",
|
||||||
|
"Header": "Hlavi\u010dka",
|
||||||
|
"Body": "T\u011blo",
|
||||||
|
"Footer": "Pati\u010dka",
|
||||||
|
"Border color": "Barva r\u00e1me\u010dku",
|
||||||
|
"Insert template": "Vlo\u017eit \u0161ablonu",
|
||||||
|
"Templates": "\u0160ablony",
|
||||||
|
"Template": "\u0160ablona",
|
||||||
|
"Text color": "Barva p\u00edsma",
|
||||||
|
"Background color": "Barva pozad\u00ed",
|
||||||
|
"Custom...": "Vlastn\u00ed...",
|
||||||
|
"Custom color": "Vlastn\u00ed barva",
|
||||||
|
"No color": "Bez barvy",
|
||||||
|
"Table of Contents": "Obsah",
|
||||||
|
"Show blocks": "Uk\u00e1zat bloky",
|
||||||
|
"Show invisible characters": "Zobrazit speci\u00e1ln\u00ed znaky",
|
||||||
|
"Words: {0}": "Po\u010det slov: {0}",
|
||||||
|
"{0} words": "Po\u010det slov: {0}",
|
||||||
|
"File": "Soubor",
|
||||||
|
"Edit": "\u00dapravy",
|
||||||
|
"Insert": "Vlo\u017eit",
|
||||||
|
"View": "Zobrazit",
|
||||||
|
"Format": "Form\u00e1t",
|
||||||
|
"Table": "Tabulka",
|
||||||
|
"Tools": "N\u00e1stroje",
|
||||||
|
"Powered by {0}": "Vytvo\u0159il {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Editor. Stiskn\u011bte ALT-F9 pro menu, ALT-F10 pro n\u00e1strojovou li\u0161tu a ALT-0 pro n\u00e1pov\u011bdu."
|
||||||
|
});
|
261
client/src/assets/tinymce/langs/de.js
Normal file
261
client/src/assets/tinymce/langs/de.js
Normal file
@ -0,0 +1,261 @@
|
|||||||
|
tinymce.addI18n('de',{
|
||||||
|
"Redo": "Wiederholen",
|
||||||
|
"Undo": "R\u00fcckg\u00e4ngig",
|
||||||
|
"Cut": "Ausschneiden",
|
||||||
|
"Copy": "Kopieren",
|
||||||
|
"Paste": "Einf\u00fcgen",
|
||||||
|
"Select all": "Alles ausw\u00e4hlen",
|
||||||
|
"New document": "Neues Dokument",
|
||||||
|
"Ok": "Ok",
|
||||||
|
"Cancel": "Abbrechen",
|
||||||
|
"Visual aids": "Visuelle Hilfen",
|
||||||
|
"Bold": "Fett",
|
||||||
|
"Italic": "Kursiv",
|
||||||
|
"Underline": "Unterstrichen",
|
||||||
|
"Strikethrough": "Durchgestrichen",
|
||||||
|
"Superscript": "Hochgestellt",
|
||||||
|
"Subscript": "Tiefgestellt",
|
||||||
|
"Clear formatting": "Formatierung entfernen",
|
||||||
|
"Align left": "Linksb\u00fcndig ausrichten",
|
||||||
|
"Align center": "Zentriert ausrichten",
|
||||||
|
"Align right": "Rechtsb\u00fcndig ausrichten",
|
||||||
|
"Justify": "Blocksatz",
|
||||||
|
"Bullet list": "Aufz\u00e4hlung",
|
||||||
|
"Numbered list": "Nummerierte Liste",
|
||||||
|
"Decrease indent": "Einzug verkleinern",
|
||||||
|
"Increase indent": "Einzug vergr\u00f6\u00dfern",
|
||||||
|
"Close": "Schlie\u00dfen",
|
||||||
|
"Formats": "Formate",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Strg + X \/ C \/ V Tastenkombinationen.",
|
||||||
|
"Headers": "\u00dcberschriften",
|
||||||
|
"Header 1": "\u00dcberschrift 1",
|
||||||
|
"Header 2": "\u00dcberschrift 2",
|
||||||
|
"Header 3": "\u00dcberschrift 3",
|
||||||
|
"Header 4": "\u00dcberschrift 4",
|
||||||
|
"Header 5": "\u00dcberschrift 5",
|
||||||
|
"Header 6": "\u00dcberschrift 6",
|
||||||
|
"Headings": "\u00dcberschriften",
|
||||||
|
"Heading 1": "\u00dcberschrift 1",
|
||||||
|
"Heading 2": "\u00dcberschrift 2",
|
||||||
|
"Heading 3": "\u00dcberschrift 3",
|
||||||
|
"Heading 4": "\u00dcberschrift 4",
|
||||||
|
"Heading 5": "\u00dcberschrift 5",
|
||||||
|
"Heading 6": "\u00dcberschrift 6",
|
||||||
|
"Preformatted": "Preformatted",
|
||||||
|
"Div": "Textblock",
|
||||||
|
"Pre": "Vorformatierter Text",
|
||||||
|
"Code": "Quelltext",
|
||||||
|
"Paragraph": "Absatz",
|
||||||
|
"Blockquote": "Zitat",
|
||||||
|
"Inline": "Zeichenformate",
|
||||||
|
"Blocks": "Absatzformate",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
|
||||||
|
"Font Family": "Schriftart",
|
||||||
|
"Font Sizes": "Schriftgr\u00f6\u00dfe",
|
||||||
|
"Class": "Klasse",
|
||||||
|
"Browse for an image": "Bild...",
|
||||||
|
"OR": "ODER",
|
||||||
|
"Drop an image here": "Bild hier ablegen",
|
||||||
|
"Upload": "Hochladen",
|
||||||
|
"Block": "Blocksatz",
|
||||||
|
"Align": "Ausrichtung",
|
||||||
|
"Default": "Standard",
|
||||||
|
"Circle": "Kreis",
|
||||||
|
"Disc": "Punkt",
|
||||||
|
"Square": "Quadrat",
|
||||||
|
"Lower Alpha": "Kleinbuchstaben",
|
||||||
|
"Lower Greek": "Griechische Kleinbuchstaben",
|
||||||
|
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
||||||
|
"Upper Alpha": "Gro\u00dfbuchstaben",
|
||||||
|
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
||||||
|
"Anchor": "Textmarke",
|
||||||
|
"Name": "Name",
|
||||||
|
"Id": "Kennung",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
||||||
|
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
||||||
|
"Special character": "Sonderzeichen",
|
||||||
|
"Source code": "Quelltext",
|
||||||
|
"Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten",
|
||||||
|
"Language": "Sprache",
|
||||||
|
"Code sample": "Codebeispiel",
|
||||||
|
"Color": "Farbe",
|
||||||
|
"R": "R",
|
||||||
|
"G": "G",
|
||||||
|
"B": "B",
|
||||||
|
"Left to right": "Von links nach rechts",
|
||||||
|
"Right to left": "Von rechts nach links",
|
||||||
|
"Emoticons": "Emoticons",
|
||||||
|
"Document properties": "Dokumenteigenschaften",
|
||||||
|
"Title": "Titel",
|
||||||
|
"Keywords": "Sch\u00fcsselw\u00f6rter",
|
||||||
|
"Description": "Beschreibung",
|
||||||
|
"Robots": "Robots",
|
||||||
|
"Author": "Verfasser",
|
||||||
|
"Encoding": "Zeichenkodierung",
|
||||||
|
"Fullscreen": "Vollbild",
|
||||||
|
"Action": "Aktion",
|
||||||
|
"Shortcut": "Shortcut",
|
||||||
|
"Help": "Hilfe",
|
||||||
|
"Address": "Adresse",
|
||||||
|
"Focus to menubar": "Fokus auf Men\u00fcleiste",
|
||||||
|
"Focus to toolbar": "Fokus auf Werkzeugleiste",
|
||||||
|
"Focus to element path": "Fokus auf Elementpfad",
|
||||||
|
"Focus to contextual toolbar": "Fokus auf kontextbezogene Werkzeugleiste",
|
||||||
|
"Insert link (if link plugin activated)": "Link einf\u00fcgen (wenn Link-Plugin aktiviert ist)",
|
||||||
|
"Save (if save plugin activated)": "Speichern (wenn Save-Plugin aktiviert ist)",
|
||||||
|
"Find (if searchreplace plugin activated)": "Suchen einf\u00fcgen (wenn Suchen\/Ersetzen-Plugin aktiviert ist)",
|
||||||
|
"Plugins installed ({0}):": "installierte Plugins ({0}):",
|
||||||
|
"Premium plugins:": "Premium Plugins:",
|
||||||
|
"Learn more...": "Erfahren Sie mehr dazu...",
|
||||||
|
"You are using {0}": "Sie verwenden {0}",
|
||||||
|
"Plugins": "Plugins",
|
||||||
|
"Handy Shortcuts": "Praktische Tastenkombinationen",
|
||||||
|
"Horizontal line": "Horizontale Linie",
|
||||||
|
"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten",
|
||||||
|
"Image description": "Bildbeschreibung",
|
||||||
|
"Source": "Quelle",
|
||||||
|
"Dimensions": "Abmessungen",
|
||||||
|
"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten",
|
||||||
|
"General": "Allgemein",
|
||||||
|
"Advanced": "Erweitert",
|
||||||
|
"Style": "Stil",
|
||||||
|
"Vertical space": "Vertikaler Abstand",
|
||||||
|
"Horizontal space": "Horizontaler Abstand",
|
||||||
|
"Border": "Rahmen",
|
||||||
|
"Insert image": "Bild einf\u00fcgen",
|
||||||
|
"Image": "Bild",
|
||||||
|
"Image list": "Bildliste",
|
||||||
|
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
||||||
|
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
||||||
|
"Flip vertically": "Vertikal spiegeln",
|
||||||
|
"Flip horizontally": "Horizontal spiegeln",
|
||||||
|
"Edit image": "Bild bearbeiten",
|
||||||
|
"Image options": "Bildeigenschaften",
|
||||||
|
"Zoom in": "Ansicht vergr\u00f6\u00dfern",
|
||||||
|
"Zoom out": "Ansicht verkleinern",
|
||||||
|
"Crop": "Bescheiden",
|
||||||
|
"Resize": "Skalieren",
|
||||||
|
"Orientation": "Ausrichtung",
|
||||||
|
"Brightness": "Helligkeit",
|
||||||
|
"Sharpen": "Sch\u00e4rfen",
|
||||||
|
"Contrast": "Kontrast",
|
||||||
|
"Color levels": "Farbwerte",
|
||||||
|
"Gamma": "Gamma",
|
||||||
|
"Invert": "Invertieren",
|
||||||
|
"Apply": "Anwenden",
|
||||||
|
"Back": "Zur\u00fcck",
|
||||||
|
"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
|
||||||
|
"Date\/time": "Datum\/Uhrzeit",
|
||||||
|
"Insert link": "Link einf\u00fcgen",
|
||||||
|
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
||||||
|
"Text to display": "Anzuzeigender Text",
|
||||||
|
"Url": "URL",
|
||||||
|
"Target": "Ziel",
|
||||||
|
"None": "Keine",
|
||||||
|
"New window": "Neues Fenster",
|
||||||
|
"Remove link": "Link entfernen",
|
||||||
|
"Anchors": "Textmarken",
|
||||||
|
"Link": "Link",
|
||||||
|
"Paste or type a link": "Link einf\u00fcgen oder eintippen",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
|
||||||
|
"Link list": "Linkliste",
|
||||||
|
"Insert video": "Video einf\u00fcgen",
|
||||||
|
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
||||||
|
"Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten",
|
||||||
|
"Alternative source": "Alternative Quelle",
|
||||||
|
"Poster": "Poster",
|
||||||
|
"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
|
||||||
|
"Embed": "Einbetten",
|
||||||
|
"Media": "Medium",
|
||||||
|
"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
|
||||||
|
"Page break": "Seitenumbruch",
|
||||||
|
"Paste as text": "Als Text einf\u00fcgen",
|
||||||
|
"Preview": "Vorschau",
|
||||||
|
"Print": "Drucken",
|
||||||
|
"Save": "Speichern",
|
||||||
|
"Find": "Suchen",
|
||||||
|
"Replace with": "Ersetzen durch",
|
||||||
|
"Replace": "Ersetzen",
|
||||||
|
"Replace all": "Alles ersetzen",
|
||||||
|
"Prev": "Zur\u00fcck",
|
||||||
|
"Next": "Weiter",
|
||||||
|
"Find and replace": "Suchen und ersetzen",
|
||||||
|
"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
|
||||||
|
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
||||||
|
"Whole words": "Nur ganze W\u00f6rter",
|
||||||
|
"Spellcheck": "Rechtschreibpr\u00fcfung",
|
||||||
|
"Ignore": "Ignorieren",
|
||||||
|
"Ignore all": "Alles Ignorieren",
|
||||||
|
"Finish": "Ende",
|
||||||
|
"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen",
|
||||||
|
"Insert table": "Tabelle einf\u00fcgen",
|
||||||
|
"Table properties": "Tabelleneigenschaften",
|
||||||
|
"Delete table": "Tabelle l\u00f6schen",
|
||||||
|
"Cell": "Zelle",
|
||||||
|
"Row": "Zeile",
|
||||||
|
"Column": "Spalte",
|
||||||
|
"Cell properties": "Zelleneigenschaften",
|
||||||
|
"Merge cells": "Zellen verbinden",
|
||||||
|
"Split cell": "Zelle aufteilen",
|
||||||
|
"Insert row before": "Neue Zeile davor einf\u00fcgen ",
|
||||||
|
"Insert row after": "Neue Zeile danach einf\u00fcgen",
|
||||||
|
"Delete row": "Zeile l\u00f6schen",
|
||||||
|
"Row properties": "Zeileneigenschaften",
|
||||||
|
"Cut row": "Zeile ausschneiden",
|
||||||
|
"Copy row": "Zeile kopieren",
|
||||||
|
"Paste row before": "Zeile davor einf\u00fcgen",
|
||||||
|
"Paste row after": "Zeile danach einf\u00fcgen",
|
||||||
|
"Insert column before": "Neue Spalte davor einf\u00fcgen",
|
||||||
|
"Insert column after": "Neue Spalte danach einf\u00fcgen",
|
||||||
|
"Delete column": "Spalte l\u00f6schen",
|
||||||
|
"Cols": "Spalten",
|
||||||
|
"Rows": "Zeilen",
|
||||||
|
"Width": "Breite",
|
||||||
|
"Height": "H\u00f6he",
|
||||||
|
"Cell spacing": "Zellenabstand",
|
||||||
|
"Cell padding": "Zelleninnenabstand",
|
||||||
|
"Caption": "Beschriftung",
|
||||||
|
"Left": "Linksb\u00fcndig",
|
||||||
|
"Center": "Zentriert",
|
||||||
|
"Right": "Rechtsb\u00fcndig",
|
||||||
|
"Cell type": "Zellentyp",
|
||||||
|
"Scope": "G\u00fcltigkeitsbereich",
|
||||||
|
"Alignment": "Ausrichtung",
|
||||||
|
"H Align": "Horizontale Ausrichtung",
|
||||||
|
"V Align": "Vertikale Ausrichtung",
|
||||||
|
"Top": "Oben",
|
||||||
|
"Middle": "Mitte",
|
||||||
|
"Bottom": "Unten",
|
||||||
|
"Header cell": "Kopfzelle",
|
||||||
|
"Row group": "Zeilengruppe",
|
||||||
|
"Column group": "Spaltengruppe",
|
||||||
|
"Row type": "Zeilentyp",
|
||||||
|
"Header": "Kopfzeile",
|
||||||
|
"Body": "Inhalt",
|
||||||
|
"Footer": "Fu\u00dfzeile",
|
||||||
|
"Border color": "Rahmenfarbe",
|
||||||
|
"Insert template": "Vorlage einf\u00fcgen ",
|
||||||
|
"Templates": "Vorlagen",
|
||||||
|
"Template": "Vorlage",
|
||||||
|
"Text color": "Textfarbe",
|
||||||
|
"Background color": "Hintergrundfarbe",
|
||||||
|
"Custom...": "Benutzerdefiniert...",
|
||||||
|
"Custom color": "Benutzerdefinierte Farbe",
|
||||||
|
"No color": "Keine Farbe",
|
||||||
|
"Table of Contents": "Inhaltsverzeichnis",
|
||||||
|
"Show blocks": "Bl\u00f6cke anzeigen",
|
||||||
|
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
||||||
|
"Words: {0}": "W\u00f6rter: {0}",
|
||||||
|
"{0} words": "{0} W\u00f6rter",
|
||||||
|
"File": "Datei",
|
||||||
|
"Edit": "Bearbeiten",
|
||||||
|
"Insert": "Einf\u00fcgen",
|
||||||
|
"View": "Ansicht",
|
||||||
|
"Format": "Format",
|
||||||
|
"Table": "Tabelle",
|
||||||
|
"Tools": "Werkzeuge",
|
||||||
|
"Powered by {0}": "Betrieben von {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe"
|
||||||
|
});
|
261
client/src/assets/tinymce/langs/en.js
Normal file
261
client/src/assets/tinymce/langs/en.js
Normal file
@ -0,0 +1,261 @@
|
|||||||
|
tinymce.addI18n('en_GB',{
|
||||||
|
"Redo": "Redo",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Cut": "Cut",
|
||||||
|
"Copy": "Copy",
|
||||||
|
"Paste": "Paste",
|
||||||
|
"Select all": "Select all",
|
||||||
|
"New document": "New document",
|
||||||
|
"Ok": "Ok",
|
||||||
|
"Cancel": "Cancel",
|
||||||
|
"Visual aids": "Visual aids",
|
||||||
|
"Bold": "Bold",
|
||||||
|
"Italic": "Italic",
|
||||||
|
"Underline": "Underline",
|
||||||
|
"Strikethrough": "Strike-through",
|
||||||
|
"Superscript": "Superscript",
|
||||||
|
"Subscript": "Subscript",
|
||||||
|
"Clear formatting": "Clear formatting",
|
||||||
|
"Align left": "Align left",
|
||||||
|
"Align center": "Align centre",
|
||||||
|
"Align right": "Align right",
|
||||||
|
"Justify": "Justify",
|
||||||
|
"Bullet list": "Bullet list",
|
||||||
|
"Numbered list": "Numbered list",
|
||||||
|
"Decrease indent": "Decrease indent",
|
||||||
|
"Increase indent": "Increase indent",
|
||||||
|
"Close": "Close",
|
||||||
|
"Formats": "Formats",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.",
|
||||||
|
"Headers": "Headers",
|
||||||
|
"Header 1": "Header 1",
|
||||||
|
"Header 2": "Header 2",
|
||||||
|
"Header 3": "Header 3",
|
||||||
|
"Header 4": "Header 4",
|
||||||
|
"Header 5": "Header 5",
|
||||||
|
"Header 6": "Header 6",
|
||||||
|
"Headings": "Headings",
|
||||||
|
"Heading 1": "Heading 1",
|
||||||
|
"Heading 2": "Heading 2",
|
||||||
|
"Heading 3": "Heading 3",
|
||||||
|
"Heading 4": "Heading 4",
|
||||||
|
"Heading 5": "Heading 5",
|
||||||
|
"Heading 6": "Heading 6",
|
||||||
|
"Preformatted": "Preformatted",
|
||||||
|
"Div": "Div",
|
||||||
|
"Pre": "Pre",
|
||||||
|
"Code": "Code",
|
||||||
|
"Paragraph": "Paragraph",
|
||||||
|
"Blockquote": "Blockquote",
|
||||||
|
"Inline": "Inline",
|
||||||
|
"Blocks": "Blocks",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.",
|
||||||
|
"Font Family": "Font Family",
|
||||||
|
"Font Sizes": "Font Sizes",
|
||||||
|
"Class": "Class",
|
||||||
|
"Browse for an image": "Browse for an image",
|
||||||
|
"OR": "OR",
|
||||||
|
"Drop an image here": "Drop an image here",
|
||||||
|
"Upload": "Upload",
|
||||||
|
"Block": "Block",
|
||||||
|
"Align": "Align",
|
||||||
|
"Default": "Default",
|
||||||
|
"Circle": "Circle",
|
||||||
|
"Disc": "Disc",
|
||||||
|
"Square": "Square",
|
||||||
|
"Lower Alpha": "Lower Alpha",
|
||||||
|
"Lower Greek": "Lower Greek",
|
||||||
|
"Lower Roman": "Lower Roman",
|
||||||
|
"Upper Alpha": "Upper Alpha",
|
||||||
|
"Upper Roman": "Upper Roman",
|
||||||
|
"Anchor": "Anchor",
|
||||||
|
"Name": "Name",
|
||||||
|
"Id": "ID",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?",
|
||||||
|
"Restore last draft": "Restore last draft",
|
||||||
|
"Special character": "Special character",
|
||||||
|
"Source code": "Source code",
|
||||||
|
"Insert\/Edit code sample": "Insert\/Edit code sample",
|
||||||
|
"Language": "Language",
|
||||||
|
"Code sample": "Code sample",
|
||||||
|
"Color": "Colour",
|
||||||
|
"R": "R",
|
||||||
|
"G": "G",
|
||||||
|
"B": "B",
|
||||||
|
"Left to right": "Left to right",
|
||||||
|
"Right to left": "Right to left",
|
||||||
|
"Emoticons": "Emoticons",
|
||||||
|
"Document properties": "Document properties",
|
||||||
|
"Title": "Title",
|
||||||
|
"Keywords": "Keywords",
|
||||||
|
"Description": "Description",
|
||||||
|
"Robots": "Robots",
|
||||||
|
"Author": "Author",
|
||||||
|
"Encoding": "Encoding",
|
||||||
|
"Fullscreen": "Full-screen",
|
||||||
|
"Action": "Action",
|
||||||
|
"Shortcut": "Shortcut",
|
||||||
|
"Help": "Help",
|
||||||
|
"Address": "Address",
|
||||||
|
"Focus to menubar": "Focus to menubar",
|
||||||
|
"Focus to toolbar": "Focus to toolbar",
|
||||||
|
"Focus to element path": "Focus to element path",
|
||||||
|
"Focus to contextual toolbar": "Focus to contextual toolbar",
|
||||||
|
"Insert link (if link plugin activated)": "Insert link (if link plugin activated)",
|
||||||
|
"Save (if save plugin activated)": "Save (if save plugin activated)",
|
||||||
|
"Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)",
|
||||||
|
"Plugins installed ({0}):": "Plugins installed ({0}):",
|
||||||
|
"Premium plugins:": "Premium plugins:",
|
||||||
|
"Learn more...": "Learn more...",
|
||||||
|
"You are using {0}": "You are using {0}",
|
||||||
|
"Plugins": "Plugins",
|
||||||
|
"Handy Shortcuts": "Handy Shortcuts",
|
||||||
|
"Horizontal line": "Horizontal line",
|
||||||
|
"Insert\/edit image": "Insert\/edit image",
|
||||||
|
"Image description": "Image description",
|
||||||
|
"Source": "Source",
|
||||||
|
"Dimensions": "Dimensions",
|
||||||
|
"Constrain proportions": "Constrain proportions",
|
||||||
|
"General": "General",
|
||||||
|
"Advanced": "Advanced",
|
||||||
|
"Style": "Style",
|
||||||
|
"Vertical space": "Vertical space",
|
||||||
|
"Horizontal space": "Horizontal space",
|
||||||
|
"Border": "Border",
|
||||||
|
"Insert image": "Insert image",
|
||||||
|
"Image": "Image",
|
||||||
|
"Image list": "Image list",
|
||||||
|
"Rotate counterclockwise": "Rotate counterclockwise",
|
||||||
|
"Rotate clockwise": "Rotate clockwise",
|
||||||
|
"Flip vertically": "Flip vertically",
|
||||||
|
"Flip horizontally": "Flip horizontally",
|
||||||
|
"Edit image": "Edit image",
|
||||||
|
"Image options": "Image options",
|
||||||
|
"Zoom in": "Zoom in",
|
||||||
|
"Zoom out": "Zoom out",
|
||||||
|
"Crop": "Crop",
|
||||||
|
"Resize": "Resize",
|
||||||
|
"Orientation": "Orientation",
|
||||||
|
"Brightness": "Brightness",
|
||||||
|
"Sharpen": "Sharpen",
|
||||||
|
"Contrast": "Contrast",
|
||||||
|
"Color levels": "Colour levels",
|
||||||
|
"Gamma": "Gamma",
|
||||||
|
"Invert": "Invert",
|
||||||
|
"Apply": "Apply",
|
||||||
|
"Back": "Back",
|
||||||
|
"Insert date\/time": "Insert date\/time",
|
||||||
|
"Date\/time": "Date\/time",
|
||||||
|
"Insert link": "Insert link",
|
||||||
|
"Insert\/edit link": "Insert\/edit link",
|
||||||
|
"Text to display": "Text to display",
|
||||||
|
"Url": "URL",
|
||||||
|
"Target": "Target",
|
||||||
|
"None": "None",
|
||||||
|
"New window": "New window",
|
||||||
|
"Remove link": "Remove link",
|
||||||
|
"Anchors": "Anchors",
|
||||||
|
"Link": "Link",
|
||||||
|
"Paste or type a link": "Paste or type a link",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
|
||||||
|
"Link list": "Link list",
|
||||||
|
"Insert video": "Insert video",
|
||||||
|
"Insert\/edit video": "Insert\/edit video",
|
||||||
|
"Insert\/edit media": "Insert\/edit media",
|
||||||
|
"Alternative source": "Alternative source",
|
||||||
|
"Poster": "Poster",
|
||||||
|
"Paste your embed code below:": "Paste your embed code below:",
|
||||||
|
"Embed": "Embed",
|
||||||
|
"Media": "Media",
|
||||||
|
"Nonbreaking space": "Non-breaking space",
|
||||||
|
"Page break": "Page break",
|
||||||
|
"Paste as text": "Paste as text",
|
||||||
|
"Preview": "Preview",
|
||||||
|
"Print": "Print",
|
||||||
|
"Save": "Save",
|
||||||
|
"Find": "Find",
|
||||||
|
"Replace with": "Replace with",
|
||||||
|
"Replace": "Replace",
|
||||||
|
"Replace all": "Replace all",
|
||||||
|
"Prev": "Prev",
|
||||||
|
"Next": "Next",
|
||||||
|
"Find and replace": "Find and replace",
|
||||||
|
"Could not find the specified string.": "Could not find the specified string.",
|
||||||
|
"Match case": "Match case",
|
||||||
|
"Whole words": "Whole words",
|
||||||
|
"Spellcheck": "Spell-check",
|
||||||
|
"Ignore": "Ignore",
|
||||||
|
"Ignore all": "Ignore all",
|
||||||
|
"Finish": "Finish",
|
||||||
|
"Add to Dictionary": "Add to Dictionary",
|
||||||
|
"Insert table": "Insert table",
|
||||||
|
"Table properties": "Table properties",
|
||||||
|
"Delete table": "Delete table",
|
||||||
|
"Cell": "Cell",
|
||||||
|
"Row": "Row",
|
||||||
|
"Column": "Column",
|
||||||
|
"Cell properties": "Cell properties",
|
||||||
|
"Merge cells": "Merge cells",
|
||||||
|
"Split cell": "Split cell",
|
||||||
|
"Insert row before": "Insert row before",
|
||||||
|
"Insert row after": "Insert row after",
|
||||||
|
"Delete row": "Delete row",
|
||||||
|
"Row properties": "Row properties",
|
||||||
|
"Cut row": "Cut row",
|
||||||
|
"Copy row": "Copy row",
|
||||||
|
"Paste row before": "Paste row before",
|
||||||
|
"Paste row after": "Paste row after",
|
||||||
|
"Insert column before": "Insert column before",
|
||||||
|
"Insert column after": "Insert column after",
|
||||||
|
"Delete column": "Delete column",
|
||||||
|
"Cols": "Cols",
|
||||||
|
"Rows": "Rows",
|
||||||
|
"Width": "Width",
|
||||||
|
"Height": "Height",
|
||||||
|
"Cell spacing": "Cell spacing",
|
||||||
|
"Cell padding": "Cell padding",
|
||||||
|
"Caption": "Caption",
|
||||||
|
"Left": "Left",
|
||||||
|
"Center": "Centre",
|
||||||
|
"Right": "Right",
|
||||||
|
"Cell type": "Cell type",
|
||||||
|
"Scope": "Scope",
|
||||||
|
"Alignment": "Alignment",
|
||||||
|
"H Align": "H Align",
|
||||||
|
"V Align": "V Align",
|
||||||
|
"Top": "Top",
|
||||||
|
"Middle": "Middle",
|
||||||
|
"Bottom": "Bottom",
|
||||||
|
"Header cell": "Header cell",
|
||||||
|
"Row group": "Row group",
|
||||||
|
"Column group": "Column group",
|
||||||
|
"Row type": "Row type",
|
||||||
|
"Header": "Header",
|
||||||
|
"Body": "Body",
|
||||||
|
"Footer": "Footer",
|
||||||
|
"Border color": "Border colour",
|
||||||
|
"Insert template": "Insert template",
|
||||||
|
"Templates": "Templates",
|
||||||
|
"Template": "Template",
|
||||||
|
"Text color": "Text colour",
|
||||||
|
"Background color": "Background colour",
|
||||||
|
"Custom...": "Custom...",
|
||||||
|
"Custom color": "Custom colour",
|
||||||
|
"No color": "No colour",
|
||||||
|
"Table of Contents": "Table of Contents",
|
||||||
|
"Show blocks": "Show blocks",
|
||||||
|
"Show invisible characters": "Show invisible characters",
|
||||||
|
"Words: {0}": "Words: {0}",
|
||||||
|
"{0} words": "{0} words",
|
||||||
|
"File": "File",
|
||||||
|
"Edit": "Edit",
|
||||||
|
"Insert": "Insert",
|
||||||
|
"View": "View",
|
||||||
|
"Format": "Format",
|
||||||
|
"Table": "Table",
|
||||||
|
"Tools": "Tools",
|
||||||
|
"Powered by {0}": "Powered by {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help"
|
||||||
|
});
|
@ -355,9 +355,9 @@ mat-expansion-panel {
|
|||||||
|
|
||||||
.mat-chip-list.user .mat-chip {
|
.mat-chip-list.user .mat-chip {
|
||||||
border-radius: 16px !important;
|
border-radius: 16px !important;
|
||||||
padding: 15px !important;
|
padding: 5px 15px !important;
|
||||||
border: solid 1px lightgray;
|
border: 1px solid;
|
||||||
background: #fff;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
// to display quantities. Use in span or div
|
// to display quantities. Use in span or div
|
||||||
@ -606,6 +606,9 @@ button.mat-menu-item.selected {
|
|||||||
/*** Projector slides ***/
|
/*** Projector slides ***/
|
||||||
|
|
||||||
#slide {
|
#slide {
|
||||||
|
h2 {
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
h3 {
|
h3 {
|
||||||
color: #222;
|
color: #222;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
Loading…
Reference in New Issue
Block a user