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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
<?php
$translation = array(
"username" => "username",
"password" => "password",
"login_form_header" => "Login",
"login_form_button" => "Login",
"login_background_image" => "Background image: <a href=\"[[URL]]\">[[FILENAME]]</a> by [[AUTHOR]]. License: [[LICENSE]]",
"login_failed" => "Login failed (Username/Password is wrong or you are not an admin).",
"logout" => "Logout",
"section_admin" => "Administration",
"section_content" => "Content",
"section_design" => "Design",
"section_plugins" => "Plugins",
"menu_articles" => "Articles",
"menu_comments" => "Comments",
"menu_images" => "Images",
"menu_languages" => "Languages",
"menu_newarticles" => "New Article",
"menu_pagesections" => "Page Sections",
"menu_plugin_repos" => "Plugin Repositories",
"menu_plugininstall" => "Install Plugin",
"menu_pluginlist" => "Plugin List",
"menu_settings" => "Settings",
"menu_styles" => "Styles",
"menu_tags" => "Tags",
"menu_templates" => "Templates",
"menu_users_groups" => "Users / Groups",
"new_article" => "New Article",
"articleedit_title" => "Article Title",
"articleedit_content" => "Content",
"articleedit_excerpt" => "Excerpt",
"comment_form_name" => "Your name",
"comment_form_mail" => "Your E-Mailaddress",
"comment_form_text" => "Your comment (Markdown format)",
"page_prev" => "<-- previous page",
"page_next" => "next page -->",
"e404_details" => "The page [[URL]] could not be found. Sorry.",
"author_name_missing" => "No author name given.",
"author_email_missing" => "No author E-Mailaddress given.",
"comment_text_missing" => "An empty comment can not be posted.",
"comment_form_invalid" => "The comment form is invalid.",
"comment_too_fast" => "This comment was written too fast. Are you a spambot?",
"article_other_languages" => "This article in other languages: ",
"save_texts_as_lang" => "Save texts as language",
"settings_meta" => "Settings / Metadata",
"urlname" => "Unique URL name",
"tags_cs" => "Tags (comma seperated)",
"date_time" => "Date / Time",
"article_status" => "Article Status",
"article_status_hidden" => "Hidden",
"article_status_live" => "Live",
"article_status_sticky" => "Sticky",
"article_section" => "Section",
"invalid_urlname" => "Invalid URL name (Can contain a-z A-Z 0-9 - and _)",
"invalid_article_status" => "Invalid article status",
"unknown_txtproc" => "Unknown Textprocessor",
"invalid_date" => "Invalid date",
"article_edit_error" => "Could not edit article.",
"unknown_section" => "Unknown section",
"allow_comments" => "Allow comments?",
"article_name_already_in_use" => "Article name is already in use.",
"article_save_success" => "Article successfully saved.",
"delete_tag_pagetitle" => "Delete \"[[TAGNAME]]\"",
"delete_comment_question" => "Do you want to delete this tag?",
"tag_deleted" => "Tag was deleted.",
"back_to_tags" => "Go back to Content::Tags",
"create_new_tag" => "Create a new Tag",
"new_tag_name" => "Name",
"tags_overview" => "Tag Overview",
"tag_name" => "Tag name",
"delete" => "Delete",
"yestext_default" => "Yes",
"notext_default" => "No",
"tag_add_lang" => "Add translation",
"language_unknown" => "Unknown language",
"no_translation_text_given" => "No translation text given.",
"translation_added_successfully" => "Translation added successfully.",
"tag_translation_added" => "Translation added.",
"invalid_tag_name" => "Invalid tag name. A tag name can not contain commas (,) or spaces ( ) and must not be empty.",
"tag_name_already_in_use" => "Tag name already in use.",
"tag_created_successfully" => "Tag created successfully.",
"tag_titles_edited_successfully" => "Tag titles changed successfully.",
"available_languages" => "Available languages",
"tags" => "Tags",
"section" => "Section",
"no_articles" => "No articles stored.",
"delete" => "Delete",
"articles_deleted" => "Articles deleted.",
"sort_asc" => "ascending",
"sort_desc" => "descending",
"filter" => "Filter",
"filter_urlname" => "by URL name",
"filter_tag" => "by tag",
"filter_section" => "by section",
"image_upload" => "Upload a new image",
"img_upload_name" => "Name",
"img_upload_name_leave_empty" => "(Leave empty for default filename)",
"image_preview" => "Preview",
"image_name" => "Name",
"image_getmarkup" => "Embed code",
"no_images" => "No images stored.",
"upload_failed" => "Upload failed.",
"unknown_file_format" => "Unknown file format.",
"upload_success" => "Upload successful",
"images_deleted" => "Images deleted.",
"generate_embed_code" => "Generate embed code.",
"image_alt" => "Alternative Title",
"embed_code" => "Embed code"
);
?>
|