This repository has been archived by the owner on Nov 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
locallang_db.php
78 lines (77 loc) · 2.14 KB
/
locallang_db.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Language labels for database tables/fields belonging to extension "t3quotes"
*
* This file is detected by the translation tool.
*/
$LOCAL_LANG = Array (
'default' => Array (
'tt_content.tx_t3quotes_selected' => 'Show selected quotes only:',
'tx_t3quotes' => 'Quotes',
'tx_t3quotes.preface' => 'Editors comment:',
'tx_t3quotes.quote' => 'Quote:',
'tx_t3quotes.full_context' => 'Full Context:',
'tx_t3quotes.author_name' => 'Author Name:',
'tx_t3quotes.author_email' => 'Author Email:',
'tx_t3quotes.author_title' => 'Author Title:',
'tx_t3quotes.weight.I.0' => 'High priority',
'tx_t3quotes.weight.I.1' => 'Normal',
'tx_t3quotes.weight.I.2' => 'Low priority',
'tx_t3quotes.weight' => 'Order Weight:',
'tx_t3quotes.date' => 'Date:',
'tx_t3quotes.selected' => 'Selected:',
'tx_t3quotes.rotation_quote' => 'Rotation quote (very short):',
'tx_t3quotes.authstate' => 'Authenticated (show full name, email and title):',
'tt_content.list_type' => 'Quotes',
),
'dk' => Array (
'tt_content.tx_t3quotes_selected' => 'Vis kun udvalgte citater:',
'tx_t3quotes' => 'Citater',
'tx_t3quotes.preface' => 'Redaktørens kommentar:',
'tx_t3quotes.quote' => 'Citat:',
'tx_t3quotes.full_context' => 'Fulde sammenhæng:',
'tx_t3quotes.author_name' => 'Forfatter navn:',
'tx_t3quotes.author_email' => 'Forfatter email:',
'tx_t3quotes.author_title' => 'Forfatter titel:',
'tx_t3quotes.weight.I.0' => 'Høj prioritet',
'tx_t3quotes.weight.I.1' => 'Normal',
'tx_t3quotes.weight.I.2' => 'Lav prioritet',
'tx_t3quotes.weight' => 'Rækkefølge vægtning:',
'tx_t3quotes.date' => 'Dato:',
'tx_t3quotes.selected' => 'Udvalgt:',
'tx_t3quotes.rotation_quote' => 'Rotationscitat (meget kort):',
'tx_t3quotes.authstate' => 'Godkendt af forfatter (fulde navn, email og titel vises):',
'tt_content.list_type' => 'Citater',
),
'de' => Array (
),
'no' => Array (
),
'it' => Array (
),
'fr' => Array (
),
'es' => Array (
),
'nl' => Array (
),
'cz' => Array (
),
'pl' => Array (
),
'si' => Array (
),
'fi' => Array (
),
'tr' => Array (
),
'se' => Array (
),
'pt' => Array (
),
'ru' => Array (
),
'ro' => Array (
),
);
?>