mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-27 12:18:54 +02:00
69 lines
No EOL
2.8 KiB
JavaScript
69 lines
No EOL
2.8 KiB
JavaScript
/*
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
CKEDITOR.plugins.setLang( 'partdb_label', 'de', {
|
|
title: 'Platzhalter einfügen',
|
|
label: 'Platzhalter',
|
|
'section.global': 'Global',
|
|
'section.part': 'Bauteil',
|
|
'section.part_lot': 'Bauteilbestand',
|
|
'section.storelocation': 'Lagerort',
|
|
'part.id': 'Datenbank ID',
|
|
'part.name': 'Bauteilename',
|
|
'part.category': 'Kategorie',
|
|
'part.category_full': 'Kategorie (Ganzer Pfad)',
|
|
'part.manufacturer': 'Hersteller',
|
|
'part.manufacturer_full': 'Hersteller (Ganzer Pfad)',
|
|
'part.footprint': 'Footprint',
|
|
'part.footprint_full': 'Footprint (Ganzer Pfad)',
|
|
'part.mass': 'Gewicht',
|
|
'part.tags': 'Tags',
|
|
'part.mpn': 'Herstellernummer (MPN)',
|
|
'part.status': 'Herstellungsstatus',
|
|
'part.description': 'Beschreibung',
|
|
'part.description_t': 'Beschreibung (Text)',
|
|
'part.comment': 'Kommentar',
|
|
'part.comment_t': 'Kommentar (Text)',
|
|
'part.last_modified': 'Änderungsdatum',
|
|
'part.creation_date': 'Erstellungsdatum',
|
|
'global.username': 'Benutzername',
|
|
'global.username_full': 'Benutzername (inklusive Name)',
|
|
'global.datetime': 'Datum & Uhrzeit',
|
|
'global.date': 'Datum',
|
|
'global.time': 'Uhrzeit',
|
|
'global.install_name': 'Installationsname',
|
|
'global.type': 'Zieltyp',
|
|
'lot.id': 'Lot ID',
|
|
'lot.name': 'Lot Name',
|
|
'lot.comment': 'Lot Kommentar',
|
|
'lot.expiration_date': 'Ablaufdatum',
|
|
'lot.amount': 'Bestandsmenge',
|
|
'lot.location': 'Lagerort',
|
|
'lot.location_full': 'Lagerort (Ganzer Pfad)',
|
|
|
|
'storelocation.id': 'Lagerort ID',
|
|
'storelocation.name': 'Name',
|
|
'storelocation.full_path': 'Ganzer Pfad',
|
|
'storelocation.parent_name': 'Name des Übergeordneten Elements',
|
|
'storelocation.parent_full_path': 'Ganzer Pfad des Übergeordneten Elements',
|
|
'storelocation.comment': 'Kommentar',
|
|
'storelocation.comment_t': 'Kommentar (Text)',
|
|
'storelocation.last_modified': 'Änderungsdatum',
|
|
'storelocation.creation_date': 'Erstellungsdatum',
|
|
} ); |