1<?php
2
3/**
4 * The English language file - try to be the best of British and American English
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public License,
7 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
8 * obtain one at http://mozilla.org/MPL/2.0/.
9 *
10 * @package phpMyFAQ
11 * @author Thorsten Rinne <thorsten@phpmyfaq.de>
12 * @author Matthias Sommerfeld <mso@bluebirdy.de>
13 * @author Henning Schulzrinne <hgs@cs.columbia.edu>
14 * @copyright 2004-2020 phpMyFAQ Team
15 * @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16 * @link https://www.phpmyfaq.de
17 * @since 2004-02-19
18 */
19
20/**
21 *                !!! IMPORTANT NOTE !!!
22 * Please consider following while defining new vars:
23 * - one variable definition per line !!!
24 * - the perfect case is to define a scalar string value
25 * - if some dynamic content is needed, use sprintf() syntax
26 * - arrays are allowed but not recommended
27 * - no comments at the end of line after the var definition
28 * - do not use '=' char in the array keys
29 *   (eq. $PMF_LANG["a=b"] is not allowed)
30 *
31 *  Please be consistent with this format as we need it for
32 *  the translation tool to work properly
33 */
34
35$PMF_LANG["metaCharset"] = "UTF-8";
36$PMF_LANG["metaLanguage"] = "en";
37$PMF_LANG["language"] = "english";
38// ltr: left to right (e.g. English language); rtl: right to left (e.g. Arabic language)
39$PMF_LANG["dir"] = "ltr";
40$PMF_LANG["nplurals"] = "2";
41
42// Navigation
43$PMF_LANG["msgCategory"] = "Categories";
44$PMF_LANG["msgShowAllCategories"] = "All categories";
45$PMF_LANG["msgSearch"] = "Search";
46$PMF_LANG["msgAddContent"] = "Add new FAQ";
47$PMF_LANG["msgQuestion"] = "Add question";
48$PMF_LANG["msgOpenQuestions"] = "Open questions";
49$PMF_LANG["msgHelp"] = "Help";
50$PMF_LANG["msgContact"] = "Contact";
51$PMF_LANG["msgHome"] = "FAQ Home";
52$PMF_LANG["msgNews"] = "FAQ News";
53$PMF_LANG["msgUserOnline"] = " Users online";
54$PMF_LANG["msgBack2Home"] = "Back to main page";
55
56// Contentpages
57$PMF_LANG["msgFullCategories"] = "Categories";
58$PMF_LANG["msgFullCategoriesIn"] = "Categories with FAQs in ";
59$PMF_LANG["msgSubCategories"] = "Subcategories";
60$PMF_LANG["msgEntries"] = "FAQs";
61$PMF_LANG["msgEntriesIn"] = "Questions in ";
62$PMF_LANG["msgViews"] = "views";
63$PMF_LANG["msgPage"] = "Page ";
64$PMF_LANG["msgPages"] = " Pages";
65$PMF_LANG["msgPrevious"] = "previous";
66$PMF_LANG["msgNext"] = "next";
67$PMF_LANG["msgCategoryUp"] = "one category up";
68$PMF_LANG["msgLastUpdateArticle"] = "Last update: ";
69$PMF_LANG["msgAuthor"] = "Author: ";
70$PMF_LANG["msgPrinterFriendly"] = "printer-friendly version";
71$PMF_LANG["msgPrintArticle"] = "Print this record";
72$PMF_LANG["msgMakeXMLExport"] = "Export as XML-File";
73$PMF_LANG["msgAverageVote"] = "Average rating";
74$PMF_LANG["msgVoteUsability"] = "Rate this FAQ";
75$PMF_LANG["msgVoteFrom"] = "out of";
76$PMF_LANG["msgVoteBad"] = "completely useless";
77$PMF_LANG["msgVoteGood"] = "most valuable";
78$PMF_LANG["msgVotings"] = "Votes ";
79$PMF_LANG["msgVoteSubmit"] = "Vote";
80$PMF_LANG["msgVoteThanks"] = "Thanks a lot for your vote!";
81$PMF_LANG["msgYouCan"] = "You can ";
82$PMF_LANG["msgWriteComment"] = "comment this FAQ";
83$PMF_LANG["msgShowCategory"] = "Content Overview: ";
84$PMF_LANG["msgCommentBy"] = "Comment of ";
85$PMF_LANG["msgCommentHeader"] = "Comment this FAQ";
86$PMF_LANG["msgYourComment"] = "Your comment";
87$PMF_LANG["msgCommentThanks"] = "Thanks a lot for your comment!";
88$PMF_LANG["msgSeeXMLFile"] = "open XML-File";
89$PMF_LANG["msgSend2Friend"] = "Send FAQ to a friend";
90$PMF_LANG["msgS2FName"] = "Your name";
91$PMF_LANG["msgS2FEMail"] = "Your e-mail address";
92$PMF_LANG["msgS2FFriends"] = "Your friends";
93$PMF_LANG["msgS2FEMails"] = ". e-mail address";
94$PMF_LANG["msgS2FText"] = "The following text will be sent";
95$PMF_LANG["msgS2FText2"] = "You'll find the FAQ at the following address";
96$PMF_LANG["msgS2FMessage"] = "Additional message for your friends";
97$PMF_LANG["msgS2FButton"] = "send e-mail";
98$PMF_LANG["msgS2FThx"] = "Thanks for your recommendation!";
99$PMF_LANG["msgS2FMailSubject"] = "Recommendation from ";
100
101// Search
102$PMF_LANG["msgSearchWord"] = "Keyword";
103$PMF_LANG["msgSearchFind"] = "Search result for ";
104$PMF_LANG["msgSearchAmount"] = " search result";
105$PMF_LANG["msgSearchAmounts"] = " search results";
106$PMF_LANG["msgSearchCategory"] = "Entity: ";
107$PMF_LANG["msgSearchContent"] = "Answer: ";
108
109// new Content
110$PMF_LANG["msgNewContentHeader"] = "Proposal for a new FAQ";
111$PMF_LANG["msgNewContentAddon"] = "Your proposal will not be published right away, but will be released by the administrator upon receipt. Required  fields are <strong>your Name</strong>, <strong>your email address</strong>, <strong>category</strong>, <strong>question</strong> and <strong>answer</strong>. Please separate the keywords with commas only.";
112$PMF_LANG["msgNewContentName"] = "Your name";
113$PMF_LANG["msgNewContentMail"] = "Email";
114$PMF_LANG["msgNewContentCategory"] = "Entity";
115$PMF_LANG["msgNewContentTheme"] = "Your question";
116$PMF_LANG["msgNewContentArticle"] = "Your answer";
117$PMF_LANG["msgNewContentKeywords"] = "Keywords";
118$PMF_LANG["msgNewContentLink"] = "Link for this FAQ";
119$PMF_LANG["msgNewContentSubmit"] = "submit";
120$PMF_LANG["msgInfo"] = "More information: ";
121$PMF_LANG["msgNewContentThanks"] = "Thank you for your suggestion!";
122
123// ask Question
124$PMF_LANG["msgNewQuestion"] = "Ask your question below";
125$PMF_LANG["msgAskCategory"] = "Entity";
126$PMF_LANG["msgAskYourQuestion"] = "Your question";
127$PMF_LANG["msgAskThx4Mail"] = "Thanks for your question!";
128$PMF_LANG["msgDate_User"] = "Date / User";
129$PMF_LANG["msgQuestion2"] = "Question";
130$PMF_LANG["msg2answer"] = "Answer";
131$PMF_LANG["msgQuestionText"] = "Here you can see questions asked by other users. If you answer these question, your answers may be inserted into the FAQ.";
132$PMF_LANG["msgNoQuestionsAvailable"] = "Currently there are no pending questions.";
133
134// Contact
135$PMF_LANG["msgContactEMail"] = "Email the FAQ owner";
136$PMF_LANG["msgMessage"] = "Your message";
137
138// Homepage
139$PMF_LANG["msgTopTen"] = "Most popular FAQs";
140$PMF_LANG["msgHomeThereAre"] = "There are ";
141$PMF_LANG["msgHomeArticlesOnline"] = " FAQs online";
142$PMF_LANG["msgNoNews"] = "No news is good news.";
143$PMF_LANG["msgLatestArticles"] = "Latest FAQs";
144
145// E-mail notification
146$PMF_LANG["msgMailThanks"] = "Many thanks for your proposal to the FAQ.";
147$PMF_LANG["msgMailCheck"] = "There's a new entry in the FAQ! Please check the admin section!";
148$PMF_LANG["msgMailContact"] = "Your message has been sent to the administrator.";
149
150// Error messages
151$PMF_LANG["err_noDatabase"] = "No database connection available.";
152$PMF_LANG["err_noHeaders"] = "No category found.";
153$PMF_LANG["err_noArticles"] = "No FAQs available.";
154$PMF_LANG["err_badID"] = "Wrong ID.";
155$PMF_LANG["err_noTopTen"] = "No popular FAQs available yet.";
156$PMF_LANG["err_nothingFound"] = "No entry found.";
157$PMF_LANG["err_SaveEntries"] = "Required fields are <strong>your name</strong>, <strong>your email address</strong>, <strong>category</strong>, <strong>question</strong>, <strong>your Record</strong> and, when requested, the <strong><a href=\"http://en.wikipedia.org/wiki/Captcha\" title=\"Read more on Captcha at Wikipedia\" target=\"_blank\">Captcha</a> code</strong>!";
158$PMF_LANG["err_SaveComment"] = "Required fields are <strong>your name</strong>, <strong>your email address</strong>, <strong>your comments</strong> and, when requested, the <strong><a href=\"http://en.wikipedia.org/wiki/Captcha\" title=\"Read more on Captcha at Wikipedia\" target=\"_blank\">Captcha</a> code</strong>!";
159$PMF_LANG["err_VoteTooMuch"] = "We do not count double votings.";
160$PMF_LANG["err_noVote"] = "You did not rate the question!";
161$PMF_LANG["err_noMailAdress"] = "Your email address is not correct.";
162$PMF_LANG["err_sendMail"] = "Required fields are <strong>your name</strong>, <strong>your email address</strong>, <strong>your question</strong> and, when requested, the <strong><a href=\"http://en.wikipedia.org/wiki/Captcha\" title=\"Read more on Captcha at Wikipedia\" target=\"_blank\">Captcha</a> code</strong>!";
163
164// Search help
165$PMF_LANG["help_search"] = "<strong>Search for records:</strong><br>With an entry like <strong style=\"color: Red;\">word1 word2</strong> you can do a relevance descending search for two or more search criterion.<strong>Notice:</strong> Your search criterion has to be at least 4 letters long otherwise your request will be rejected.";
166
167// Menu
168$PMF_LANG["ad"] = "Administration";
169$PMF_LANG["ad_menu_user_administration"] = "Users";
170$PMF_LANG["ad_menu_entry_aprove"] = "Approve FAQs";
171$PMF_LANG["ad_menu_entry_edit"] = "Edit existing FAQs";
172$PMF_LANG["ad_menu_categ_add"] = "Add category";
173$PMF_LANG["ad_menu_categ_edit"] = "Edit category";
174$PMF_LANG["ad_menu_news_add"] = "Add news";
175$PMF_LANG["ad_menu_news_edit"] = "FAQ News";
176$PMF_LANG["ad_menu_open"] = "Open questions";
177$PMF_LANG["ad_menu_stat"] = "Statistics";
178$PMF_LANG["ad_menu_cookie"] = "Set cookies";
179$PMF_LANG["ad_menu_session"] = "View Sessions";
180$PMF_LANG["ad_menu_adminlog"] = "View Adminlog";
181$PMF_LANG["ad_menu_passwd"] = "Change Password";
182$PMF_LANG["ad_menu_logout"] = "Logout";
183$PMF_LANG["ad_menu_startpage"] = "Startpage";
184
185// Messages
186$PMF_LANG["ad_msg_identify"] = "Please identify yourself.";
187$PMF_LANG["ad_msg_passmatch"] = "Both passwords must <strong>match</strong>!";
188$PMF_LANG["ad_msg_savedsuc_1"] = "The profile of";
189$PMF_LANG["ad_msg_savedsuc_2"] = "was saved successfully.";
190$PMF_LANG["ad_msg_mysqlerr"] = "Due to a <strong>database error</strong>, the profile could not be saved.";
191$PMF_LANG["ad_msg_noauth"] = "You are not authorized.";
192
193// General
194$PMF_LANG["ad_gen_page"] = "Page";
195$PMF_LANG["ad_gen_of"] = "of";
196$PMF_LANG["ad_gen_lastpage"] = "Previous page";
197$PMF_LANG["ad_gen_nextpage"] = "Next page";
198$PMF_LANG["ad_gen_save"] = "Save";
199$PMF_LANG["ad_gen_reset"] = "Reset";
200$PMF_LANG["ad_gen_yes"] = "Yes";
201$PMF_LANG["ad_gen_no"] = "No";
202$PMF_LANG["ad_gen_top"] = "Top of page";
203$PMF_LANG["ad_gen_ncf"] = "No category found!";
204$PMF_LANG["ad_gen_delete"] = "Delete";
205$PMF_LANG['ad_gen_or'] = "oder";
206
207// User administration
208$PMF_LANG["ad_user"] = "User administration";
209$PMF_LANG["ad_user_username"] = "Registered users";
210$PMF_LANG["ad_user_rights"] = "User rights";
211$PMF_LANG["ad_user_edit"] = "edit";
212$PMF_LANG["ad_user_delete"] = "delete";
213$PMF_LANG["ad_user_add"] = "Add user";
214$PMF_LANG["ad_user_profou"] = "Profile of the user";
215$PMF_LANG["ad_user_name"] = "Name";
216$PMF_LANG["ad_user_password"] = "Password";
217$PMF_LANG["ad_user_confirm"] = "Confirm";
218$PMF_LANG["ad_user_del_1"] = "The User";
219$PMF_LANG["ad_user_del_2"] = "shall be deleted?";
220$PMF_LANG["ad_user_del_3"] = "Are you sure?";
221$PMF_LANG["ad_user_deleted"] = "The user was successfully deleted.";
222$PMF_LANG["ad_user_checkall"] = "Select all";
223
224// Contribution management
225$PMF_LANG["ad_entry_aor"] = "FAQ administration";
226$PMF_LANG["ad_entry_id"] = "ID";
227$PMF_LANG["ad_entry_topic"] = "Topic";
228$PMF_LANG["ad_entry_action"] = "Action";
229$PMF_LANG["ad_entry_edit_1"] = "Edit Record";
230$PMF_LANG["ad_entry_edit_2"] = "";
231$PMF_LANG["ad_entry_theme"] = "Question";
232$PMF_LANG["ad_entry_content"] = "Answer";
233$PMF_LANG["ad_entry_keywords"] = "Keywords";
234$PMF_LANG["ad_entry_author"] = "Author";
235$PMF_LANG["ad_entry_category"] = "Entity";
236$PMF_LANG["ad_entry_active"] = "Visible";
237$PMF_LANG["ad_entry_date"] = "Date";
238$PMF_LANG["ad_entry_status"] = "FAQ Status";
239$PMF_LANG["ad_entry_changed"] = "Changed?";
240$PMF_LANG["ad_entry_changelog"] = "Changelog";
241$PMF_LANG["ad_entry_commentby"] = "Comment by";
242$PMF_LANG["ad_entry_comment"] = "Comments";
243$PMF_LANG["ad_entry_save"] = "Save";
244$PMF_LANG["ad_entry_delete"] = "delete";
245$PMF_LANG["ad_entry_delcom_1"] = "Are you sure that the comment of the user";
246$PMF_LANG["ad_entry_delcom_2"] = "should be deleted?";
247$PMF_LANG["ad_entry_commentdelsuc"] = "The comment was <strong>successfully</strong> deleted.";
248$PMF_LANG["ad_entry_back"] = "Back to the article";
249$PMF_LANG["ad_entry_commentdelfail"] = "The comment was <strong>not</strong> deleted.";
250$PMF_LANG["ad_entry_savedsuc"] = "The changes were saved <strong>successfully</strong>.";
251$PMF_LANG["ad_entry_savedfail"] = "Unfortunately, a <strong>database error</strong> occurred.";
252$PMF_LANG["ad_entry_del_1"] = "Are you sure that the topic";
253$PMF_LANG["ad_entry_del_2"] = "of";
254$PMF_LANG["ad_entry_del_3"] = "should be deleted?";
255$PMF_LANG["ad_entry_delsuc"] = "Issue <strong>successfully</strong> deleted.";
256$PMF_LANG["ad_entry_delfail"] = "Issue was <strong>not deleted</strong>!";
257$PMF_LANG["ad_entry_back"] = "Back";
258
259// News management
260$PMF_LANG["ad_news_header"] = "Article header";
261$PMF_LANG["ad_news_text"] = "Text of the Record";
262$PMF_LANG["ad_news_link_url"] = "Link";
263$PMF_LANG["ad_news_link_title"] = "Title of the link";
264$PMF_LANG["ad_news_link_target"] = "Target of the link";
265$PMF_LANG["ad_news_link_window"] = "Link opens new window";
266$PMF_LANG["ad_news_link_faq"] = "Link within the FAQ";
267$PMF_LANG["ad_news_add"] = "Add News entry";
268$PMF_LANG["ad_news_id"] = "#";
269$PMF_LANG["ad_news_headline"] = "Headline";
270$PMF_LANG["ad_news_date"] = "Date";
271$PMF_LANG["ad_news_action"] = "Action";
272$PMF_LANG["ad_news_update"] = "update";
273$PMF_LANG["ad_news_delete"] = "delete";
274$PMF_LANG["ad_news_nodata"] = "No data found in database";
275$PMF_LANG["ad_news_updatesuc"] = "The news has been successfully updated.";
276$PMF_LANG["ad_news_del"] = "Are you sure that you want to delete this news item?";
277$PMF_LANG["ad_news_yesdelete"] = "yes, delete!";
278$PMF_LANG["ad_news_nodelete"] = "no";
279$PMF_LANG["ad_news_delsuc"] = "The news has been successfully deleted.";
280$PMF_LANG["ad_news_updatenews"] = "News item updated.";
281
282// Category management
283$PMF_LANG["ad_categ_new"] = "Add new category";
284$PMF_LANG["ad_categ_catnum"] = "Entity number";
285$PMF_LANG["ad_categ_subcatnum"] = "Subcategory number";
286$PMF_LANG["ad_categ_nya"] = "<em>not yet available!</em>";
287$PMF_LANG["ad_categ_titel"] = "Entity title";
288$PMF_LANG["ad_categ_add"] = "Add category";
289$PMF_LANG["ad_categ_existing"] = "Existing categories";
290$PMF_LANG["ad_categ_id"] = "#";
291$PMF_LANG["ad_categ_categ"] = "Entity";
292$PMF_LANG["ad_categ_subcateg"] = "Subcategory";
293$PMF_LANG["ad_categ_titel"] = "Entity title";
294$PMF_LANG["ad_categ_action"] = "Action";
295$PMF_LANG["ad_categ_update"] = "update";
296$PMF_LANG["ad_categ_delete"] = "delete";
297$PMF_LANG["ad_categ_updatecateg"] = "Update Entity";
298$PMF_LANG["ad_categ_nodata"] = "No data found in database";
299$PMF_LANG["ad_categ_remark"] = "Please note that existing entries will not be visible anymore, if you delete the category. You must assign a new category for the article or delete the article.";
300$PMF_LANG["ad_categ_edit_1"] = "Edit";
301$PMF_LANG["ad_categ_edit_2"] = "Entity";
302$PMF_LANG["ad_categ_added"] = "The category was added.";
303$PMF_LANG["ad_categ_updated"] = "The category was updated.";
304$PMF_LANG["ad_categ_del_yes"] = "yes, delete!";
305$PMF_LANG["ad_categ_del_no"] = "no!";
306$PMF_LANG["ad_categ_deletesure"] = "Are you sure to delete this category?";
307$PMF_LANG["ad_categ_deleted"] = "Entity deleted.";
308
309// Cookies
310$PMF_LANG["ad_cookie_cookiesuc"] = "The cookie was <strong>successfully</strong> set.";
311$PMF_LANG["ad_cookie_already"] = "A cookie was set already. You now have following options";
312$PMF_LANG["ad_cookie_again"] = "Set cookie again";
313$PMF_LANG["ad_cookie_delete"] = "Delete cookie";
314$PMF_LANG["ad_cookie_no"] = "There is no cookie saved yet. With a cookie you could save your login script, thus no need to remember your login details again. You now have following options";
315$PMF_LANG["ad_cookie_set"] = "Set cookie";
316$PMF_LANG["ad_cookie_deleted"] = "Cookie deleted successfully.";
317
318// Adminlog
319$PMF_LANG["ad_adminlog"] = "AdminLog";
320
321// Passwd
322$PMF_LANG["ad_passwd_cop"] = "Change your Password";
323$PMF_LANG["ad_passwd_old"] = "Old password";
324$PMF_LANG["ad_passwd_new"] = "New password";
325$PMF_LANG["ad_passwd_con"] = "Retype password";
326$PMF_LANG["ad_passwd_change"] = "Change password";
327$PMF_LANG["ad_passwd_suc"] = "Password changed successfully.";
328$PMF_LANG["ad_passwd_remark"] = "<strong>ATTENTION:</strong><br>Cookie have to be set again!";
329$PMF_LANG["ad_passwd_fail"] = "The old password <strong>must</strong> be entered correctly and both new ones have to <strong>match</strong>.";
330
331// Adduser
332$PMF_LANG["ad_adus_adduser"] = "Add new user account";
333$PMF_LANG["ad_adus_name"] = "Username";
334$PMF_LANG["ad_adus_password"] = "Password";
335$PMF_LANG["ad_adus_add"] = "Add user";
336$PMF_LANG["ad_adus_suc"] = "User <strong>successfully</strong> added.";
337$PMF_LANG["ad_adus_edit"] = "Edit profile";
338$PMF_LANG["ad_adus_dberr"] = "<strong>database error!</strong>";
339$PMF_LANG["ad_adus_exerr"] = "Username <strong>exists</strong> already.";
340
341// Sessions
342$PMF_LANG["ad_sess_id"] = "ID";
343$PMF_LANG["ad_sess_sid"] = "Session ID";
344$PMF_LANG["ad_sess_ip"] = "IP";
345$PMF_LANG["ad_sess_time"] = "Time";
346$PMF_LANG["ad_sess_pageviews"] = "PageViews";
347$PMF_LANG["ad_sess_search"] = "Search";
348$PMF_LANG["ad_sess_sfs"] = "Search for sessions";
349$PMF_LANG["ad_sess_s_ip"] = "IP";
350$PMF_LANG["ad_sess_s_minct"] = "min. actions";
351$PMF_LANG["ad_sess_s_date"] = "Date";
352$PMF_LANG["ad_sess_s_after"] = "after";
353$PMF_LANG["ad_sess_s_before"] = "before";
354$PMF_LANG["ad_sess_s_search"] = "Search";
355$PMF_LANG["ad_sess_session"] = "Session";
356$PMF_LANG["ad_sess_r"] = "Search results for";
357$PMF_LANG["ad_sess_referer"] = "Referer";
358$PMF_LANG["ad_sess_browser"] = "Browser";
359$PMF_LANG["ad_sess_ai_rubrik"] = "Entity";
360$PMF_LANG["ad_sess_ai_artikel"] = "Record";
361$PMF_LANG["ad_sess_ai_sb"] = "Search-Strings";
362$PMF_LANG["ad_sess_ai_sid"] = "Session ID";
363$PMF_LANG["ad_sess_back"] = "Back";
364$PMF_LANG['ad_sess_noentry'] = "No entry";
365
366// Statistics
367$PMF_LANG["ad_rs"] = "Rating Statistics";
368$PMF_LANG["ad_rs_rating_1"] = "The ranking of";
369$PMF_LANG["ad_rs_rating_2"] = "users shows";
370$PMF_LANG["ad_rs_red"] = "Red";
371$PMF_LANG["ad_rs_green"] = "Green";
372$PMF_LANG["ad_rs_altt"] = "with an average lower than 20%";
373$PMF_LANG["ad_rs_ahtf"] = "with an average higher than 80%";
374$PMF_LANG["ad_rs_no"] = "No ranking available";
375
376// Auth
377$PMF_LANG["ad_auth_insert"] = "Please enter your login name and password.";
378$PMF_LANG["ad_auth_user"] = "Login name";
379$PMF_LANG["ad_auth_passwd"] = "Password";
380$PMF_LANG["ad_auth_ok"] = "OK";
381$PMF_LANG["ad_auth_reset"] = "Reset";
382$PMF_LANG["ad_auth_fail"] = "Wrong login name or password.";
383$PMF_LANG["ad_auth_sess"] = "The Sessions ID is passed.";
384
385// Added v0.8 - 24.05.2001 - Bastian - Admin
386$PMF_LANG["ad_config_edit"] = "Edit configuration";
387$PMF_LANG["ad_config_save"] = "Save configuration";
388$PMF_LANG["ad_config_reset"] = "Reset";
389$PMF_LANG["ad_config_saved"] = "The configuration has been saved successfully.";
390$PMF_LANG["ad_menu_editconfig"] = "Edit configuration";
391$PMF_LANG["ad_att_none"] = "No attachments available";
392$PMF_LANG["ad_att_add"] = "Add new attachment";
393$PMF_LANG["ad_entryins_suc"] = "Record successfully saved.";
394$PMF_LANG["ad_entryins_fail"] = "An error occurred.";
395$PMF_LANG["ad_att_del"] = "Delete";
396$PMF_LANG["ad_att_nope"] = "Attachments can be added only while editing.";
397$PMF_LANG["ad_att_delsuc"] = "The attachment has been deleted successfully.";
398$PMF_LANG["ad_att_delfail"] = "An error occurred while deleting the attachment.";
399$PMF_LANG["ad_entry_add"] = "Add new FAQ";
400
401// Added v0.85 - 08.06.2001 - Bastian - Admin
402$PMF_LANG["ad_csv_make"] = "A backup is a complete image of the database content. The format of the backup is a SQL transaction file, which can be imported using tools like phpMyAdmin or the commandline SQL client. A backup should be performed at least once a month.";
403$PMF_LANG["ad_csv_link"] = "Download the backup";
404$PMF_LANG["ad_csv_head"] = "Create a backup";
405$PMF_LANG["ad_att_addto"] = "Add an attachment to the issue";
406$PMF_LANG["ad_att_addto_2"] = "";
407$PMF_LANG["ad_att_att"] = "Select attachment";
408$PMF_LANG["ad_att_butt"] = "OK";
409$PMF_LANG["ad_att_suc"] = "The file has been attached successfully.";
410$PMF_LANG["ad_att_fail"] = "An error occurred while attaching the file.";
411$PMF_LANG["ad_att_close"] = "Close this window";
412
413// Added v0.85 - 08.07.2001 - Bastian - Admin
414$PMF_LANG["ad_csv_restore"] = "With this form you can restore the content of the database, using a backup made with phpMyFAQ. Please note that the existing data will be overwritten.";
415$PMF_LANG["ad_csv_file"] = "File";
416$PMF_LANG["ad_csv_ok"] = "OK";
417$PMF_LANG["ad_csv_linklog"] = "backup logfiles";
418$PMF_LANG["ad_csv_linkdat"] = "backup data";
419$PMF_LANG["ad_csv_head2"] = "Restore";
420$PMF_LANG["ad_csv_no"] = "This does not seem to be a backup of phpMyFAQ.";
421$PMF_LANG["ad_csv_prepare"] = "Preparing the database queries...";
422$PMF_LANG["ad_csv_process"] = "Querying...";
423$PMF_LANG["ad_csv_of"] = "of";
424$PMF_LANG["ad_csv_suc"] = "were successful.";
425$PMF_LANG["ad_csv_backup"] = "Backup";
426$PMF_LANG["ad_csv_rest"] = "Restore a backup";
427
428// Added v0.8 - 25.05.2001 - Bastian - Admin
429$PMF_LANG["ad_menu_backup"] = "Backup";
430$PMF_LANG["ad_logout"] = "Session successfully terminated.";
431$PMF_LANG["ad_news_add"] = "Add news";
432$PMF_LANG["ad_news_edit"] = "Edit news";
433$PMF_LANG["ad_cookie"] = "Cookies";
434$PMF_LANG["ad_sess_head"] = "View sessions";
435
436// Added v1.1 - 06.01.2002 - Bastian
437$PMF_LANG["ad_menu_stat"] = "Rating Statistics";
438$PMF_LANG["ad_kateg_add"] = "Add top-level category";
439$PMF_LANG["ad_kateg_rename"] = "Edit";
440$PMF_LANG["ad_adminlog_date"] = "Date";
441$PMF_LANG["ad_adminlog_user"] = "User";
442$PMF_LANG["ad_adminlog_ip"] = "IP-Address";
443
444$PMF_LANG["ad_stat_sess"] = "Sessions";
445$PMF_LANG["ad_stat_days"] = "Days";
446$PMF_LANG["ad_stat_vis"] = "Sessions (Visits)";
447$PMF_LANG["ad_stat_vpd"] = "Visits per Day";
448$PMF_LANG["ad_stat_fien"] = "First Log";
449$PMF_LANG["ad_stat_laen"] = "Last Log";
450$PMF_LANG["ad_stat_browse"] = "browse Sessions";
451$PMF_LANG["ad_stat_ok"] = "OK";
452
453$PMF_LANG["ad_sess_time"] = "Time";
454$PMF_LANG["ad_sess_sid"] = "Session-ID";
455$PMF_LANG["ad_sess_ip"] = "IP-Address";
456
457$PMF_LANG["ad_ques_take"] = "Answer the question";
458$PMF_LANG["no_cats"] = "No Categories found.";
459
460// Added v1.1 - 17.01.2002 - Bastian
461$PMF_LANG["ad_log_lger"] = "Invalid user or password.";
462$PMF_LANG["ad_log_sess"] = "Session expired.";
463$PMF_LANG["ad_log_edit"] = "\"Edit User\"-Form for the following user: ";
464$PMF_LANG["ad_log_crea"] = "\"New article\" form.";
465$PMF_LANG["ad_log_crsa"] = "New entry created.";
466$PMF_LANG["ad_log_ussa"] = "Update data for the following user: ";
467$PMF_LANG["ad_log_usde"] = "Deleted the following user: ";
468$PMF_LANG["ad_log_beed"] = "Edit form for the following user: ";
469$PMF_LANG["ad_log_bede"] = "Deleted the following entry: ";
470
471$PMF_LANG["ad_start_visits"] = "Visits";
472$PMF_LANG["ad_start_articles"] = "Articles";
473$PMF_LANG["ad_start_comments"] = "Comments";
474
475// Added v1.1 - 30.01.2002 - Bastian
476$PMF_LANG["ad_categ_paste"] = "paste";
477$PMF_LANG["ad_categ_cut"] = "cut";
478$PMF_LANG["ad_categ_copy"] = "copy";
479$PMF_LANG["ad_categ_process"] = "Processing categories...";
480
481// Added v1.1.4 - 07.05.2002 - Thorsten
482$PMF_LANG["err_NotAuth"] = "<strong>You are not authorized.</strong>";
483
484// Added v1.2.3 - 29.11.2002 - Thorsten
485$PMF_LANG["msgPreviusPage"] = "previous page";
486$PMF_LANG["msgNextPage"] = "next page";
487$PMF_LANG["msgPageDoublePoint"] = "Page: ";
488$PMF_LANG["msgMainCategory"] = "Main category";
489
490// Added v1.2.4 - 30.01.2003 - Thorsten
491$PMF_LANG["ad_passwdsuc"] = "Your password has been changed.";
492
493// Added v1.3.0 - 04.03.2003 - Thorsten
494$PMF_LANG["ad_xml_gen"] = "Create XML export";
495$PMF_LANG["ad_entry_locale"] = "Language";
496$PMF_LANG["msgLanguageSubmit"] = "Change language";
497
498// Added v1.3.1 - 29.04.2003 - Thorsten
499$PMF_LANG["ad_attach_4"] = "The attached file must be smaller than %s Bytes.";
500$PMF_LANG["ad_menu_export"] = "Export your FAQ";
501
502$PMF_LANG["rightsLanguage"]['add_user'] = "Add user";
503$PMF_LANG["rightsLanguage"]['edit_user'] = "Edit user";
504$PMF_LANG["rightsLanguage"]['delete_user'] = "Delete user";
505$PMF_LANG["rightsLanguage"]['add_faq'] = "Add record";
506$PMF_LANG["rightsLanguage"]['edit_faq'] = "Edit record";
507$PMF_LANG["rightsLanguage"]['delete_faq'] = "Delete record";
508$PMF_LANG["rightsLanguage"]['viewlog'] = "View logs";
509$PMF_LANG["rightsLanguage"]['adminlog'] = "View admin log";
510$PMF_LANG["rightsLanguage"]['delcomment'] = "Delete comment";
511$PMF_LANG["rightsLanguage"]['addnews'] = "Add news";
512$PMF_LANG["rightsLanguage"]['editnews'] = "Edit news";
513$PMF_LANG["rightsLanguage"]['delnews'] = "Delete news";
514$PMF_LANG["rightsLanguage"]['addcateg'] = "Add category";
515$PMF_LANG["rightsLanguage"]['editcateg'] = "Edit category";
516$PMF_LANG["rightsLanguage"]['delcateg'] = "Delete category";
517$PMF_LANG["rightsLanguage"]['passwd'] = "Change passwords";
518$PMF_LANG["rightsLanguage"]['editconfig'] = "Edit configuration";
519$PMF_LANG["rightsLanguage"]['addatt'] = "Add attachments";
520$PMF_LANG["rightsLanguage"]['delatt'] = "Delete attachments";
521$PMF_LANG["rightsLanguage"]['backup'] = "Create backups";
522$PMF_LANG["rightsLanguage"]['restore'] = "Restore backups";
523$PMF_LANG["rightsLanguage"]['delquestion'] = "Delete open questions";
524$PMF_LANG["rightsLanguage"]['changebtrevs'] = "Edit revisions";
525
526$PMF_LANG["msgAttachedFiles"] = "Attached files";
527
528// Added v1.3.3 - 27.05.2003 - Thorsten
529$PMF_LANG["ad_user_action"] = "Action";
530$PMF_LANG["ad_entry_email"] = "Email";
531$PMF_LANG["ad_entry_allowComments"] = "Allow comments";
532$PMF_LANG["msgWriteNoComment"] = "You cannot comment on this entry";
533$PMF_LANG["ad_user_realname"] = "Real name";
534$PMF_LANG["ad_export_generate_pdf"] = "Create PDF file";
535$PMF_LANG["ad_export_full_faq"] = "Your FAQ as a PDF file: ";
536$PMF_LANG["err_bannedIP"] = "Your IP address has been banned.";
537$PMF_LANG["err_SaveQuestion"] = "Required fields are <strong>your name</strong>, <strong>your email address</strong>, <strong>your question</strong> and, when requested, the <strong><a href=\"http://en.wikipedia.org/wiki/Captcha\" title=\"Read more on Captcha at Wikipedia\" target=\"_blank\">Captcha</a> code</strong>.";
538
539// added v1.4.0 - 2003-12-04 by Thorsten / Mathias
540$LANG_CONF['main.language'] = [0 => "select", 1 => "Language"];
541$LANG_CONF["main.languageDetection"] = [0 => "checkbox", 1 => "Enable automatic language detection"];
542$LANG_CONF['main.titleFAQ'] = [0 => "input", 1 => "Title of your FAQ"];
543$LANG_CONF['main.currentVersion'] = [0 => "print", 1 => "phpMyFAQ Version"];
544$LANG_CONF["main.metaDescription"] = [0 => "input", 1 => "Description"];
545$LANG_CONF["main.metaKeywords"] = [0 => "input", 1 => "Keywords for Spiders"];
546$LANG_CONF["main.metaPublisher"] = [0 => "input", 1 => "Name of the Publisher"];
547$LANG_CONF['main.administrationMail'] = [0 => "input", 1 => "Email address of the Admin"];
548$LANG_CONF["main.contactInformations"] = [0 => "area", 1 => "Contact information"];
549$LANG_CONF["main.send2friendText"] = [0 => "area", 1 => "Text for the send to friend page"];
550$LANG_CONF['records.maxAttachmentSize'] = [0 => "input", 1 => "Maximum size for attachments in Bytes (max. %sByte)"];
551$LANG_CONF["records.disableAttachments"] = [0 => "checkbox", 1 => "Enable visibilty of attachments"];
552$LANG_CONF["main.enableUserTracking"] = [0 => "checkbox", 1 => "Enable user tracking"];
553$LANG_CONF["main.enableAdminLog"] = [0 => "checkbox", 1 => "use Adminlog?"];
554$LANG_CONF["main.enableCategoryRestrictions"] = [0 => "checkbox", 1 => "Enable category restrictions"];
555$LANG_CONF["security.ipCheck"] = [0 => "checkbox", 1 => "Check the IP in administration"];
556$LANG_CONF["records.numberOfRecordsPerPage"] = [0 => "input", 1 => "Number of displayed topics per page"];
557$LANG_CONF["records.numberOfShownNewsEntries"] = [0 => "input", 1 => "Number of news articles"];
558$LANG_CONF['security.bannedIPs'] = [0 => "area", 1 => "Ban these IPs"];
559$LANG_CONF["main.enableRewriteRules"] = [0 => "checkbox", 1 => "Enable URL rewrite support? (default: disabled)"];
560$LANG_CONF["ldap.ldapSupport"] = [0 => "checkbox", 1 => "Enable LDAP support? (default: disabled)"];
561$LANG_CONF["main.referenceURL"] = [0 => "input", 1 => "URL of your FAQ (e.g.: http://www.example.org/faq/)"];
562$LANG_CONF["main.urlValidateInterval"] = [0 => "input", 1 => "Interval between AJAX link verification (in seconds)"];
563$LANG_CONF["records.enableVisibilityQuestions"] = [0 => "checkbox", 1 => "Disable visibility of new questions?"];
564$LANG_CONF['security.permLevel'] = [0 => "select", 1 => "Permission level"];
565
566$PMF_LANG["ad_categ_new_main_cat"] = "as new main category";
567$PMF_LANG["ad_categ_paste_error"] = "Moving this category isn't possible.";
568$PMF_LANG["ad_categ_move"] = "move category";
569$PMF_LANG["ad_categ_lang"] = "Language";
570$PMF_LANG["ad_categ_desc"] = "Description";
571$PMF_LANG["ad_categ_change"] = "Change with";
572
573$PMF_LANG["lostPassword"] = "Password forgotten?";
574$PMF_LANG["lostpwd_err_1"] = "Error: Username and e-mail address not found.";
575$PMF_LANG["lostpwd_err_2"] = "Error: Wrong entries!";
576$PMF_LANG["lostpwd_text_1"] = "Thank you for requesting your account information.";
577$PMF_LANG["lostpwd_text_2"] = "Please set a new personal password in the admin section of your FAQ.";
578$PMF_LANG["lostpwd_mail_okay"] = "E-Mail was sent.";
579
580$PMF_LANG["ad_xmlrpc_button"] = "Click to check version of your phpMyFAQ installation";
581$PMF_LANG["ad_xmlrpc_latest"] = "Latest version available on";
582
583// added v1.5.0 - 2005-07-31 by Thorsten
584$PMF_LANG['ad_categ_select'] = 'Select category language';
585
586// added v1.5.1 - 2005-09-06 by Thorsten
587$PMF_LANG['msgSitemap'] = 'Sitemap';
588
589// added v1.5.2 - 2005-09-23 by Lars
590$PMF_LANG['err_inactiveArticle'] = 'Access denied';
591$PMF_LANG['msgArticleCategories'] = 'Categories for this entry';
592
593// added v1.6.0 - 2006-02-02 by Thorsten
594$PMF_LANG['ad_entry_solution_id'] = 'Unique solution ID';
595$PMF_LANG['ad_entry_faq_record'] = 'FAQ record';
596$PMF_LANG['ad_entry_new_revision'] = 'Create new revision?';
597$PMF_LANG['ad_entry_record_administration'] = 'Record administration';
598$PMF_LANG['ad_entry_revision'] = 'Revision';
599$PMF_LANG['ad_changerev'] = 'Select Revision';
600$PMF_LANG['msgCaptcha'] = "Please enter the captcha code";
601$PMF_LANG['msgSelectCategories'] = 'Search in ...';
602$PMF_LANG['msgAllCategories'] = '... all categories';
603$PMF_LANG['ad_you_should_update'] = 'Your phpMyFAQ installation is outdated. You should update to the latest available version.';
604$PMF_LANG['msgAdvancedSearch'] = 'Advanced search';
605
606// added v1.6.1 - 2006-04-25 by Matteo and Thorsten
607$PMF_LANG['spamControlCenter'] = 'Spam control center';
608$LANG_CONF["spam.enableSafeEmail"] = [0 => "checkbox", 1 => "Print user email in a safe way."];
609$LANG_CONF["spam.checkBannedWords"] = [0 => "checkbox", 1 => "Check public form content against banned words."];
610$LANG_CONF["spam.enableCaptchaCode"] = [0 => "checkbox", 1 => "Use a captcha code to allow public form submission."];
611$PMF_LANG['ad_session_expiring'] = 'Your session will expire in %d minutes: would you like to go on working?';
612
613// added v1.6.2 - 2006-06-13 by Matteo
614$PMF_LANG['ad_stat_management'] = 'Sessions management';
615$PMF_LANG['ad_stat_choose'] = 'Choose the month';
616$PMF_LANG['ad_stat_delete'] = 'Immediately delete the selected sessions?';
617
618// added v2.0.0 - 2005-09-15 by Thorsten and by Minoru TODA
619$PMF_LANG['ad_menu_glossary'] = 'FAQ Glossary';
620$PMF_LANG['ad_glossary_add'] = 'Add glossary entry';
621$PMF_LANG['ad_glossary_edit'] = 'Edit glossary entry';
622$PMF_LANG['ad_glossary_item'] = 'Title';
623$PMF_LANG['ad_glossary_definition'] = 'Definition';
624$PMF_LANG['ad_glossary_save'] = 'Save glossary';
625$PMF_LANG['ad_glossary_save_success'] = 'Glossary entry successfully saved!';
626$PMF_LANG['ad_glossary_save_error'] = 'The glossary entry could not saved because an error occurred.';
627$PMF_LANG['ad_glossary_update_success'] = 'Glossary entry successfully updated!';
628$PMF_LANG['ad_glossary_update_error'] = 'The glossary entry could not updated because an error occurred.';
629$PMF_LANG['ad_glossary_delete'] = 'Delete entry';
630$PMF_LANG['ad_glossary_delete_success'] = 'Glossary entry successfully deleted!';
631$PMF_LANG['ad_glossary_delete_error'] = 'The glossary entry could not deleted because an error occurred.';
632$PMF_LANG['ad_linkcheck_noReferenceURL'] = 'Automatic link verification disabled (base URL for link verify not set)';
633$PMF_LANG['ad_linkcheck_noAllowUrlOpen'] = 'Automatic link verification disabled (PHP option allow_url_fopen not Enabled)';
634$PMF_LANG['ad_linkcheck_checkResult'] = 'Automatic link verification result';
635$PMF_LANG['ad_linkcheck_checkSuccess'] = 'OK';
636$PMF_LANG['ad_linkcheck_checkFailed'] = 'Failed';
637$PMF_LANG['ad_linkcheck_failReason'] = 'Reason(s) failed:';
638$PMF_LANG['ad_linkcheck_noLinksFound'] = 'No URLs compatible with link verifier feature found.';
639$PMF_LANG['ad_linkcheck_searchbadonly'] = 'Only with bad links';
640$PMF_LANG['ad_linkcheck_infoReason'] = 'Additional Information:';
641$PMF_LANG['ad_linkcheck_openurl_infoprefix'] = 'Found while testing <strong>%s</strong>: ';
642$PMF_LANG['ad_linkcheck_openurl_notready'] = 'LinkVerifier not ready.';
643$PMF_LANG['ad_linkcheck_openurl_maxredirect'] = 'Maximum redirect count <strong>%d</strong> exceeded.';
644$PMF_LANG['ad_linkcheck_openurl_urlisblank'] = 'Resolved to blank URL.';
645$PMF_LANG['ad_linkcheck_openurl_tooslow'] = 'Host <strong>%s</strong> is slow or not responding.';
646$PMF_LANG['ad_linkcheck_openurl_nodns'] = 'DNS resolution of host <strong>%s</strong> is slow or is failed due to DNS issues, local or remote.';
647$PMF_LANG['ad_linkcheck_openurl_redirected'] = 'URL was redirected to <strong>%s</strong>.';
648$PMF_LANG['ad_linkcheck_openurl_ambiguous'] = 'Ambiguous HTTP status <strong>%s</strong> returned.';
649$PMF_LANG['ad_linkcheck_openurl_not_allowed'] = 'The <em>HEAD</em> method is not supported by the host <strong>%s</strong>, allowed methods: <strong>%s</strong>.';
650$PMF_LANG['ad_linkcheck_openurl_not_found'] = 'This resource cannot be found at host <strong>%s</strong>.';
651$PMF_LANG['ad_linkcheck_protocol_unsupported'] = '%s protocol unsupported by Automatic link verification.';
652$PMF_LANG['msgNewQuestionVisible'] = 'The question have to be reviewed first before getting public.';
653$PMF_LANG['msgQuestionsWaiting'] = 'Waiting for publishing by the administrators: ';
654$PMF_LANG['ad_entry_visibility'] = 'Publish?';
655
656// added v2.0.0 - 2006-01-02 by Lars
657$PMF_LANG['ad_user_error_password'] = "Please enter a password. ";
658$PMF_LANG['ad_user_error_passwordsDontMatch'] = "Passwords do not match. ";
659$PMF_LANG['ad_user_error_loginInvalid'] = "The specified user name is invalid.";
660$PMF_LANG['ad_user_error_noEmail'] = "Please enter a valid mail address. ";
661$PMF_LANG['ad_user_error_noRealName'] = "Please enter your real name. ";
662$PMF_LANG['ad_user_error_delete'] = "User account could not be deleted. ";
663$PMF_LANG['ad_user_error_noId'] = "No ID specified. ";
664$PMF_LANG['ad_user_error_protectedAccount'] = "User account is protected. ";
665$PMF_LANG['ad_user_deleteUser'] = "Delete User";
666$PMF_LANG['ad_user_status'] = "Status";
667$PMF_LANG['ad_user_lastModified'] = "last modified";
668$PMF_LANG['ad_gen_cancel'] = "Cancel";
669$PMF_LANG["rightsLanguage"]['addglossary'] = "add glossary item";
670$PMF_LANG["rightsLanguage"]['editglossary'] = "edit glossary item";
671$PMF_LANG["rightsLanguage"]['delglossary'] = "delete glossary item";
672$PMF_LANG["ad_menu_group_administration"] = "Groups";
673$PMF_LANG['ad_user_loggedin'] = 'Logged in as ';
674$PMF_LANG['ad_group_details'] = "Group Details";
675$PMF_LANG['ad_group_add'] = "Add Group";
676$PMF_LANG['ad_group_add_link'] = "Add Group";
677$PMF_LANG['ad_group_name'] = "Name";
678$PMF_LANG['ad_group_description'] = "Description";
679$PMF_LANG['ad_group_autoJoin'] = "Auto-join";
680$PMF_LANG['ad_group_suc'] = "Group <strong>successfully</strong> added.";
681$PMF_LANG['ad_group_error_noName'] = "Please enter a group name. ";
682$PMF_LANG['ad_group_error_delete'] = "Group could not be deleted. ";
683$PMF_LANG['ad_group_deleted'] = "The group was successfully deleted.";
684$PMF_LANG['ad_group_deleteGroup'] = "Delete Group";
685$PMF_LANG['ad_group_deleteQuestion'] = "Are you sure you want to delete this group?";
686$PMF_LANG['ad_user_uncheckall'] = "Unselect All";
687$PMF_LANG['ad_group_membership'] = "Group Membership";
688$PMF_LANG['ad_group_members'] = "Members";
689$PMF_LANG['ad_group_addMember'] = "+";
690$PMF_LANG['ad_group_removeMember'] = "-";
691
692// added v2.0.0 - 2006-07-20 by Matteo
693$PMF_LANG['ad_export_which_cat'] = 'Limit the FAQ data to be exported (optional)';
694$PMF_LANG['ad_export_cat_downwards'] = 'Include child categories?';
695$PMF_LANG['ad_export_type'] = 'Format of the export';
696$PMF_LANG['ad_export_type_choose'] = 'Supported formats:';
697$PMF_LANG['ad_export_download_view'] = 'Download or view inline?';
698$PMF_LANG['ad_export_download'] = 'download';
699$PMF_LANG['ad_export_view'] = 'view in-line';
700$PMF_LANG['ad_export_gen_xhtml'] = 'Create XHTML file';
701
702// added v2.0.0 - 2006-07-22 by Matteo
703$PMF_LANG['ad_news_data'] = 'FAQ News';
704$PMF_LANG['ad_news_author_name'] = 'Author name:';
705$PMF_LANG['ad_news_author_email'] = 'Author email:';
706$PMF_LANG['ad_news_set_active'] = 'Activate';
707$PMF_LANG['ad_news_allowComments'] = 'Allow comments:';
708$PMF_LANG['ad_news_expiration_window'] = 'News expiration time window (optional)';
709$PMF_LANG['ad_news_from'] = 'From:';
710$PMF_LANG['ad_news_to'] = 'To:';
711$PMF_LANG['ad_news_insertfail'] = 'An error occurred inserting the news item into the database.';
712$PMF_LANG['ad_news_updatefail'] = 'An error occurred updating the news item into the database.';
713$PMF_LANG['newsShowCurrent'] = 'Show current news.';
714$PMF_LANG['newsShowArchive'] = 'Show archived news.';
715$PMF_LANG['newsArchive'] = ' News archive';
716$PMF_LANG['newsWriteComment'] = 'comment on this entry';
717$PMF_LANG['newsCommentDate'] = 'Added at: ';
718
719// added v2.0.0 - 2006-07-29 by Matteo & Thorsten
720$PMF_LANG['ad_record_expiration_window'] = 'Record expiration time window (optional)';
721$PMF_LANG['admin_mainmenu_home'] = 'Dashboard';
722$PMF_LANG['admin_mainmenu_users'] = 'Users';
723$PMF_LANG['admin_mainmenu_content'] = 'Content';
724$PMF_LANG['admin_mainmenu_statistics'] = 'Statistics';
725$PMF_LANG['admin_mainmenu_exports'] = 'Exports';
726$PMF_LANG['admin_mainmenu_backup'] = 'Backup';
727$PMF_LANG['admin_mainmenu_configuration'] = 'Configuration';
728$PMF_LANG['admin_mainmenu_logout'] = 'Logout';
729
730// added v2.0.0 - 2006-08-15 by Thorsten and Matteo
731$PMF_LANG["ad_categ_owner"] = 'Entity owner';
732$PMF_LANG['adminSection'] = 'Administration';
733$PMF_LANG['err_expiredArticle'] = 'This entry is expired and can not be displayed';
734$PMF_LANG['err_expiredNews'] = 'This news is expired and can not be displayed';
735$PMF_LANG['err_inactiveNews'] = 'This news is in revision and can not be displayed';
736$PMF_LANG['msgSearchOnAllLanguages'] = 'search in all languages';
737$PMF_LANG['ad_entry_tags'] = 'Tags';
738$PMF_LANG['msg_tags'] = 'Tags';
739
740// added v2.0.0 - 2006-09-03 by Matteo
741$PMF_LANG['ad_linkcheck_feedback_url-batch1'] = 'Checking...';
742$PMF_LANG['ad_linkcheck_feedback_url-batch2'] = 'Checking...';
743$PMF_LANG['ad_linkcheck_feedback_url-batch3'] = 'Checking...';
744$PMF_LANG['ad_linkcheck_feedback_url-checking'] = 'Checking...';
745$PMF_LANG['ad_linkcheck_feedback_url-disabled'] = 'Disabled';
746$PMF_LANG['ad_linkcheck_feedback_url-linkbad'] = 'Links KO';
747$PMF_LANG['ad_linkcheck_feedback_url-linkok'] = 'Links OK';
748$PMF_LANG['ad_linkcheck_feedback_url-noaccess'] = 'No access';
749$PMF_LANG['ad_linkcheck_feedback_url-noajax'] = 'No AJAX';
750$PMF_LANG['ad_linkcheck_feedback_url-nolinks'] = 'No Links';
751$PMF_LANG['ad_linkcheck_feedback_url-noscript'] = 'No Script';
752
753// added v2.0.0 - 2006-09-02 by Thomas
754$PMF_LANG['msg_related_articles'] = 'Related entries';
755$LANG_CONF['records.numberOfRelatedArticles'] = [0 => "input", 1 => "Number of related entries"];
756
757// added v2.0.0 - 2006-09-09 by Rudi
758$PMF_LANG['ad_categ_trans_1'] = 'Translate';
759$PMF_LANG['ad_categ_trans_2'] = 'Entity';
760$PMF_LANG['ad_categ_translatecateg'] = 'Translate Entity';
761$PMF_LANG['ad_categ_translate'] = 'Translate';
762$PMF_LANG['ad_categ_transalready'] = 'Already translated in: ';
763$PMF_LANG["ad_categ_deletealllang"] = 'Delete in all languages?';
764$PMF_LANG["ad_categ_deletethislang"] = 'Delete in this language only?';
765$PMF_LANG["ad_categ_translated"] = "The category has been translated.";
766
767// added v2.0.0 - 2006-09-21 by Rudi
768$PMF_LANG["ad_categ_show"] = "Entity overview";
769$PMF_LANG['ad_menu_categ_structure'] = "Entity Overview including its languages";
770
771// added v2.0.0 - 2006-09-26 by Thorsten
772$PMF_LANG['ad_entry_userpermission'] = 'User permissions:';
773$PMF_LANG['ad_entry_grouppermission'] = 'Group permissions:';
774$PMF_LANG['ad_entry_all_users'] = 'Access for all users';
775$PMF_LANG['ad_entry_restricted_users'] = 'Restricted access to';
776$PMF_LANG['ad_entry_all_groups'] = 'Access for all groups';
777$PMF_LANG['ad_entry_restricted_groups'] = 'Restricted access to';
778$PMF_LANG['ad_session_expiration'] = 'Session expires in';
779$PMF_LANG['ad_user_active'] = 'active';
780$PMF_LANG['ad_user_blocked'] = 'blocked';
781$PMF_LANG['ad_user_protected'] = 'protected';
782
783// added v2.0.0 - 2006-10-07 by Matteo
784$PMF_LANG['ad_entry_intlink'] = 'Select a FAQ record to insert it as a link...';
785
786//added 2.0.0 - 2006-10-10 by Rudi
787$PMF_LANG["ad_categ_paste2"] = "Paste after";
788$PMF_LANG["ad_categ_remark_move"] = "The exchange of 2 categories is only possible at the same level.";
789$PMF_LANG["ad_categ_remark_overview"] = "The correct order of categories will be shown, if all categories are defined for the actual language (first column).";
790
791// added v2.0.0 - 2006-10-15 by Matteo
792$PMF_LANG['msgUsersOnline'] = '%d Guests and %d Registered';
793$PMF_LANG['ad_adminlog_del_older_30d'] = 'Immediately delete logs older than 30 days';
794$PMF_LANG['ad_adminlog_delete_success'] = 'Older logs successfully deleted.';
795$PMF_LANG['ad_adminlog_delete_failure'] = 'No logs deleted: an error occurred performing the request.';
796
797// added 2.0.0 - 2006-11-19 by Thorsten
798$PMF_LANG['opensearch_plugin_install'] = 'add search plugin';
799$PMF_LANG['ad_quicklinks'] = 'Quicklinks';
800$PMF_LANG['ad_quick_category'] = 'Add new category';
801$PMF_LANG['ad_quick_record'] = 'Add new FAQ record';
802$PMF_LANG['ad_quick_user'] = 'Add new user';
803$PMF_LANG['ad_quick_group'] = 'Add new group';
804
805// added v2.0.0 - 2006-12-30 by Matteo
806$PMF_LANG['msgNewTranslationHeader'] = 'Translation proposal';
807$PMF_LANG['msgNewTranslationAddon'] = 'Your proposal will not be published right away, but will be released by the administrator upon receipt. Required  fields are <strong>your Name</strong>, <strong>your email address</strong>, <strong>your question translation</strong> and <strong>your answer translation</strong>. Please separate the keywords with commas only.';
808$PMF_LANG['msgNewTransSourcePane'] = 'Source pane';
809$PMF_LANG['msgNewTranslationPane'] = 'Translation pane';
810$PMF_LANG['msgNewTranslationName'] = "Your Name";
811$PMF_LANG['msgNewTranslationMail'] = "Your email address";
812$PMF_LANG['msgNewTranslationKeywords'] = "Keywords";
813$PMF_LANG['msgNewTranslationSubmit'] = 'Submit your proposal';
814$PMF_LANG['msgTranslate'] = 'Translate this FAQ';
815$PMF_LANG['msgTranslateSubmit'] = 'Start translation...';
816$PMF_LANG['msgNewTranslationThanks'] = "Thank you for your translation proposal!";
817
818// added v2.0.0 - 2007-02-27 by Matteo
819$PMF_LANG["rightsLanguage"]['addgroup'] = "add group accounts";
820$PMF_LANG["rightsLanguage"]['editgroup'] = "edit group accounts";
821$PMF_LANG["rightsLanguage"]['delgroup'] = "delete group accounts";
822
823// added v2.0.0 - 2007-02-27 by Thorsten
824$PMF_LANG['ad_news_link_parent'] = 'Link opens in parent window';
825
826// added v2.0.0 - 2007-03-04 by Thorsten
827$PMF_LANG['ad_menu_comments'] = 'Comments';
828$PMF_LANG['ad_comment_administration'] = 'Comments administration';
829$PMF_LANG['ad_comment_faqs'] = 'Comments in FAQ records:';
830$PMF_LANG['ad_comment_news'] = 'Comments in News records:';
831$PMF_LANG['msgPDF'] = 'PDF version';
832$PMF_LANG['ad_groups'] = 'Groups';
833
834// added v2.0.0 - 2007-03-10 by Thorsten
835$LANG_CONF['records.orderby'] = [0 => 'select', 1 => 'Record sorting (according to property)'];
836$LANG_CONF['records.sortby'] = [0 => 'select', 1 => 'Record sorting (descending or ascending)'];
837$PMF_LANG['ad_conf_order_id'] = 'ID<br>(default)';
838$PMF_LANG['ad_conf_order_thema'] = 'Title';
839$PMF_LANG['ad_conf_order_visits'] = 'Number of visitors';
840$PMF_LANG['ad_conf_order_updated'] = 'Date';
841$PMF_LANG['ad_conf_order_author'] = 'Author';
842$PMF_LANG['ad_conf_desc'] = 'descending';
843$PMF_LANG['ad_conf_asc'] = 'ascending';
844$PMF_LANG['mainControlCenter'] = 'Main';
845$PMF_LANG['recordsControlCenter'] = 'FAQs';
846
847// added v2.0.0 - 2007-03-29 by Thorsten
848$LANG_CONF['records.defaultActivation'] = [0 => "checkbox", 1 => "Activate new records"];
849$LANG_CONF['records.defaultAllowComments'] = [0 => "checkbox", 1 => "Allow comments for new records<br>(default: disallowed)"];
850
851// added v2.0.0 - 2007-04-04 by Thorsten
852$PMF_LANG['msgAllCatArticles'] = 'Records in this category';
853$PMF_LANG['msgTagSearch'] = 'Tagged entries';
854$PMF_LANG['ad_pmf_info'] = 'phpMyFAQ Information';
855$PMF_LANG['ad_online_info'] = 'Online version check';
856$PMF_LANG['ad_system_info'] = 'System Information';
857
858// added 2.5.0-alpha - 2008-01-25 by Elger
859$PMF_LANG['msgRegisterUser'] = 'Sign up';
860$PMF_LANG["ad_user_loginname"] = 'Login name:';
861$PMF_LANG['errorRegistration'] = 'This field is required!';
862$PMF_LANG['submitRegister'] = 'Create';
863$PMF_LANG['msgUserData'] = 'User information required for registration';
864$PMF_LANG['captchaError'] = 'Please enter the right captcha code!';
865$PMF_LANG['msgRegError'] = 'Following errors occurred. Please correct them:';
866$PMF_LANG['successMessage'] = 'Your registration was successful. You will soon receive a confirmation mail with your login data!';
867$PMF_LANG['msgRegThankYou'] = 'Thank you for your registration!';
868$PMF_LANG['emailRegSubject'] = '[%sitename%] Registration: new user';
869
870// added 2.5.0-alpha2 - 2009-01-24 by Thorsten
871$PMF_LANG['msgMostPopularSearches'] = 'The most popular searches are:';
872$LANG_CONF['main.enableWysiwygEditor'] = [0 => "checkbox", 1 => "Enable bundled WYSIWYG editor"];
873
874// added 2.5.0-beta - 2009-03-30 by Anatoliy
875$PMF_LANG['ad_menu_searchstats'] = 'Search Statistics';
876$PMF_LANG['ad_searchstats_search_term'] = 'Keyword';
877$PMF_LANG['ad_searchstats_search_term_count'] = 'Count';
878$PMF_LANG['ad_searchstats_search_term_lang'] = 'Language';
879$PMF_LANG['ad_searchstats_search_term_percentage'] = 'Percentage';
880
881// added 2.5.0-beta - 2009-03-31 by Anatoliy
882$PMF_LANG['ad_record_sticky'] = 'Sticky';
883$PMF_LANG['ad_entry_sticky'] = 'Sticky';
884$PMF_LANG['stickyRecordsHeader'] = 'Sticky FAQs';
885
886// added 2.5.0-beta - 2009-04-01 by Anatoliy
887$PMF_LANG['ad_menu_stopwordsconfig'] = 'Stop Words';
888$PMF_LANG['ad_config_stopword_input'] = 'Add new stop word';
889
890// added 2.5.0-beta - 2009-04-06 by Anatoliy
891$PMF_LANG['msgSendMailDespiteEverything'] = 'No, there is still no adequate answer (will send the mail)';
892$PMF_LANG['msgSendMailIfNothingIsFound'] = 'Is the wanted answer listed in the results above?';
893
894// added 2.5.0-RC - 2009-05-11 by Anatoliy & Thorsten
895$PMF_LANG['msgChooseLanguageToTranslate'] = 'Please choose the language for translation';
896$PMF_LANG['msgLangDirIsntWritable'] = 'The folder <strong>/lang</strong> for the translation files isn\'t writable.';
897$PMF_LANG['ad_menu_translations'] = 'Interface Translation';
898$PMF_LANG['ad_start_notactive'] = 'Waiting for activation';
899
900// added 2.5.0-RC - 2009-05-20 by Anatoliy
901$PMF_LANG['msgTransToolAddNewTranslation'] = 'Add new translation';
902$PMF_LANG['msgTransToolLanguage'] = 'Language';
903$PMF_LANG['msgTransToolActions'] = 'Actions';
904$PMF_LANG['msgTransToolWritable'] = 'Writable';
905$PMF_LANG['msgEdit'] = 'Edit';
906$PMF_LANG['msgDelete'] = 'Delete';
907$PMF_LANG['msgYes'] = 'yes';
908$PMF_LANG['msgNo'] = 'no';
909$PMF_LANG['msgTransToolSureDeleteFile'] = 'Are you sure you want to delete this language file?';
910$PMF_LANG['msgTransToolFileRemoved'] = 'Language file successfully removed';
911$PMF_LANG['msgTransToolErrorRemovingFile'] = 'Error removing the language file';
912$PMF_LANG['msgVariable'] = 'Variable';
913$PMF_LANG['msgCancel'] = 'Cancel';
914$PMF_LANG['msgSave'] = 'Save';
915$PMF_LANG['msgSaving3Dots'] = 'saving ...';
916$PMF_LANG['msgRemoving3Dots'] = 'removing ...';
917$PMF_LANG['msgTransToolFileSaved'] = 'Language file saved successfully';
918$PMF_LANG['msgTransToolErrorSavingFile'] = 'Error saving the language file';
919$PMF_LANG['msgLanguage'] = 'Language';
920$PMF_LANG['msgTransToolLanguageCharset'] = 'Language charset';
921$PMF_LANG['msgTransToolLanguageDir'] = 'Language direction';
922$PMF_LANG['msgTransToolLanguageDesc'] = 'Language description';
923$PMF_LANG['msgAuthor'] = 'Author';
924$PMF_LANG['msgTransToolAddAuthor'] = 'Add author';
925$PMF_LANG['msgTransToolCreateTranslation'] = 'Create Translation';
926$PMF_LANG['msgTransToolTransCreated'] = 'New translation successfully created';
927$PMF_LANG['msgTransToolCouldntCreateTrans'] = 'Could not create the new translation';
928$PMF_LANG['msgAdding3Dots'] = 'adding ...';
929$PMF_LANG['msgTransToolSendToTeam'] = 'Send to phpMyFAQ team';
930$PMF_LANG['msgSending3Dots'] = 'sending ...';
931$PMF_LANG['msgTransToolFileSent'] = 'Language file was successfully sent to the phpMyFAQ team. Thank you very much for sharing it.';
932$PMF_LANG['msgTransToolErrorSendingFile'] = 'There was an error while sending the language file';
933$PMF_LANG['msgTransToolPercent'] = 'Percentage';
934
935// added 2.5.0-RC3 - 2009-06-23 by Anatoliy
936$LANG_CONF['records.attachmentsPath'] = [0 => "input", 1 => "Path where attachments will be saved.<br><small>Relative path means a folder within web root</small>"];
937
938// added 2.5.0-RC3 - 2009-06-24 by Anatoliy
939$PMF_LANG['msgAttachmentNotFound'] = "The file you're trying to download was not found on this server";
940
941// added 2.6.0-alpha - 2009-07-30 by Aurimas Fišeras
942//P.S. "One User online" is also possible, since sprintf just ignores extra args
943$PMF_LANG["plmsgUserOnline"][0] = "%d user online";
944$PMF_LANG["plmsgUserOnline"][1] = "%d users online";
945
946// added 2.6.0-alpha - 2009-08-02 by Anatoliy
947$LANG_CONF['main.templateSet'] = [0 => "select", 1 => "Template set to be used"];
948
949// added 2.6.0-alpha - 2009-08-16 by Aurimas Fišeras
950$PMF_LANG['msgTransToolRemove'] = 'Remove';
951$PMF_LANG["msgTransToolLanguageNumberOfPlurals"] = "Number of plural forms";
952$PMF_LANG['msgTransToolLanguageOnePlural'] = 'This language has only one plural form';
953$PMF_LANG['msgTransToolLanguagePluralNotSet'] = "Plural form support for language %s is disabled (nplurals not set)";
954
955// added 2.6.0-alpha - 2009-08-16 by Aurimas Fišeras - Plural messages
956$PMF_LANG["plmsgHomeArticlesOnline"][0] = "There is %d FAQ online";
957$PMF_LANG["plmsgHomeArticlesOnline"][1] = "There are %d FAQs online";
958$PMF_LANG["plmsgViews"][0] = "%d view";
959$PMF_LANG["plmsgViews"][1] = "%d views";
960
961// added 2.6.0-alpha - 2009-08-30 by Aurimas Fišeras - Plural messages
962$PMF_LANG['plmsgGuestOnline'][0] = '%d Guest';
963$PMF_LANG['plmsgGuestOnline'][1] = '%d Guests';
964$PMF_LANG['plmsgRegisteredOnline'][0] = ' and %d Registered';
965$PMF_LANG['plmsgRegisteredOnline'][1] = ' and %d Registered';
966$PMF_LANG["plmsgSearchAmount"][0] = "%d search result";
967$PMF_LANG["plmsgSearchAmount"][1] = "%d search results";
968$PMF_LANG["plmsgPagesTotal"][0] = " %d Page";
969$PMF_LANG["plmsgPagesTotal"][1] = " %d Pages";
970$PMF_LANG["plmsgVotes"][0] = "%d Vote";
971$PMF_LANG["plmsgVotes"][1] = "%d Votes";
972$PMF_LANG["plmsgEntries"][0] = "%d FAQ";
973$PMF_LANG["plmsgEntries"][1] = "%d FAQs";
974
975// added 2.6.0-alpha - 2009-09-06 by Aurimas Fišeras
976$PMF_LANG["rightsLanguage"]['addtranslation'] = "add translation";
977$PMF_LANG["rightsLanguage"]['edittranslation'] = "edit translation";
978$PMF_LANG["rightsLanguage"]['deltranslation'] = "delete translation";
979$PMF_LANG["rightsLanguage"]['approverec'] = "approve records";
980
981// added 2.6.0-alpha - 2009-09-9 by Anatoliy Belsky
982$LANG_CONF["records.enableAttachmentEncryption"] = [0 => "checkbox", 1 => "Enable attachment encryption <br><small>Ignored when attachments is disabled</small>"];
983$LANG_CONF["records.defaultAttachmentEncKey"] = [0 => "input", 1 => 'Default attachment encryption key <br><small>Ignored if attachment encryption is disabled</small><br><small><^font color="red">WARNING: Do not change this once set and enabled file encryption!!!</font></small>'];
984
985// added 2.6.0-alpha - 2009-09-06 by Thorsten
986$PMF_LANG['ad_menu_upgrade'] = 'Upgrade';
987$PMF_LANG['ad_you_shouldnt_update'] = 'You have the latest version of phpMyFAQ. You do not need to upgrade.';
988$LANG_CONF['security.useSslForLogins'] = [0 => 'checkbox', 1 => "Only allow logins over SSL connection?"];
989$PMF_LANG['msgSecureSwitch'] = "Switch to secure mode to login!";
990
991// added 2.6.0-alpha - 2009-10-03 by Anatoliy Belsky
992$PMF_LANG['msgTransToolNoteFileSaving'] = 'Please note that no files will we written until you click save button';
993$PMF_LANG['msgTransToolPageBufferRecorded'] = 'Page %d buffer recorded successfully';
994$PMF_LANG['msgTransToolErrorRecordingPageBuffer'] = 'Error recording page %d buffer';
995$PMF_LANG['msgTransToolRecordingPageBuffer'] = 'Recording page %d buffer';
996
997// added 2.6.0-alpha - 2009-11-02 by Anatoliy Belsky
998$PMF_LANG['ad_record_active'] = 'Active';
999
1000// added 2.6.0-alpha - 2009-11-01 by Anatoliy Belsky
1001$PMF_LANG['msgAttachmentInvalid'] = 'The attachment is invalid, please inform admin';
1002
1003// added 2.6.0-alpha - 2009-11-02 by max
1004$LANG_CONF['search.numberSearchTerms'] = [0 => 'input', 1 => 'Number of listed search terms'];
1005$LANG_CONF['records.orderingPopularFaqs'] = [0 => "select", 1 => "Sorting of the top FAQ's"];
1006$PMF_LANG['list_all_users'] = 'List all users';
1007
1008$PMF_LANG['records.orderingPopularFaqs.visits'] = "list most visited entries";
1009$PMF_LANG['records.orderingPopularFaqs.voting'] = "list most voted entries";
1010
1011// added 2.6.0-alpha - 2009-11-05 by Thorsten
1012$PMF_LANG['msgShowHelp'] = 'Please separate words by comma.';
1013
1014// added 2.6.0-RC - 2009-11-30 by Thorsten
1015$PMF_LANG['msgUpdateFaqDate'] = 'update';
1016$PMF_LANG['msgKeepFaqDate'] = 'keep';
1017$PMF_LANG['msgEditFaqDat'] = 'edit';
1018$LANG_CONF['main.optionalMailAddress'] = [0 => 'checkbox', 1 => 'Mail address as mandatory field'];
1019
1020// added v2.6.99 - 2010-11-24 by Gustavo Solt
1021$LANG_CONF['search.relevance'] = [0 => 'select', 1 => 'Sort by relevance'];
1022$LANG_CONF["search.enableRelevance"] = [0 => "checkbox", 1 => "Activate relevance support?"];
1023$PMF_LANG['searchControlCenter'] = 'Search';
1024$PMF_LANG['search.relevance.thema-content-keywords'] = 'Question - Answer - Keywords';
1025$PMF_LANG['search.relevance.thema-keywords-content'] = 'Question - Keywords - Answer';
1026$PMF_LANG['search.relevance.content-thema-keywords'] = 'Answer - Question - Keywords';
1027$PMF_LANG['search.relevance.content-keywords-thema'] = 'Answer - Keywords - Question';
1028$PMF_LANG['search.relevance.keywords-content-thema'] = 'Keywords - Answer - Question';
1029$PMF_LANG['search.relevance.keywords-thema-content'] = 'Keywords - Question - Answer';
1030
1031// added 2.7.0-alpha - 2010-09-13 by Thorsten
1032$PMF_LANG['msgLoginUser'] = 'Login';
1033$PMF_LANG['socialNetworksControlCenter'] = 'Social networks';
1034$LANG_CONF['socialnetworks.enableTwitterSupport'] = [0 => 'checkbox', 1 => 'Twitter support'];
1035$LANG_CONF['socialnetworks.twitterConsumerKey'] = [0 => 'input', 1 => 'Twitter Consumer Key'];
1036$LANG_CONF['socialnetworks.twitterConsumerSecret'] = [0 => 'input', 1 => 'Twitter Consumer Secret'];
1037
1038// added 2.7.0-alpha - 2010-10-14 by Tom Zeithaml
1039$LANG_CONF['socialnetworks.twitterAccessTokenKey'] = [0 => 'input', 1 => 'Twitter Access Token Key'];
1040$LANG_CONF['socialnetworks.twitterAccessTokenSecret'] = [0 => 'input', 1 => 'Twitter Access Token Secret'];
1041
1042// added 2.7.0-alpha - 2010-12-21 by Anatoliy Belsky
1043$PMF_LANG["ad_menu_attachments"] = "FAQ Attachments";
1044$PMF_LANG["ad_menu_attachment_admin"] = "Attachment administration";
1045$PMF_LANG['msgAttachmentsFilename'] = 'Filename';
1046$PMF_LANG['msgAttachmentsFilesize'] = 'File size';
1047$PMF_LANG['msgAttachmentsMimeType'] = 'MIME Type';
1048$PMF_LANG['msgAttachmentsWannaDelete'] = 'Are you sure you want to delete this attachment?';
1049$PMF_LANG['msgAttachmentsDeleted'] = 'Attachment <strong>successfully</strong> deleted.';
1050
1051// added v2.7.0-alpha2 - 2010-01-12 by Gustavo Solt
1052$PMF_LANG['ad_menu_reports'] = 'Reports';
1053$PMF_LANG["ad_stat_report_fields"] = "Fields";
1054$PMF_LANG["ad_stat_report_category"] = "Entity";
1055$PMF_LANG["ad_stat_report_sub_category"] = "Subcategory";
1056$PMF_LANG["ad_stat_report_translations"] = "Translations";
1057$PMF_LANG["ad_stat_report_language"] = "Language";
1058$PMF_LANG["ad_stat_report_id"] = "FAQ ID";
1059$PMF_LANG["ad_stat_report_sticky"] = "Sticky FAQ";
1060$PMF_LANG["ad_stat_report_title"] = "Question";
1061$PMF_LANG["ad_stat_report_creation_date"] = "Date";
1062$PMF_LANG["ad_stat_report_owner"] = "Original author";
1063$PMF_LANG["ad_stat_report_last_modified_person"] = "Last author";
1064$PMF_LANG["ad_stat_report_url"] = "URL";
1065$PMF_LANG["ad_stat_report_visits"] = "Visits";
1066$PMF_LANG["ad_stat_report_make_report"] = "Generate Report";
1067$PMF_LANG["ad_stat_report_make_csv"] = "Export to CSV";
1068
1069// added v2.7.0-alpha2 - 2010-02-05 by Thorsten Rinne
1070$PMF_LANG['msgRegistration'] = 'Registration';
1071$PMF_LANG['msgRegistrationCredentials'] = 'To register please enter your name, your login name and a valid email address!';
1072$PMF_LANG['msgRegistrationNote'] = 'After successful registration you will receive an answer soon after Administration has authorized your registration.';
1073
1074// added v2.7.0-beta - 2011-06-13 by Thorsten
1075$PMF_LANG['ad_entry_changelog_history'] = "Changelog history";
1076
1077// added v2.7.0-beta2 - 2011-06-22 by Thorsten
1078$LANG_CONF['security.ssoSupport'] = [0 => 'checkbox', 1 => 'Single Sign On Support'];
1079$LANG_CONF['security.ssoLogoutRedirect'] = [0 => 'input', 1 => 'Single Sign On logout redirect service URL'];
1080$LANG_CONF['main.dateFormat'] = [0 => 'input', 1 => 'Date format (default: Y-m-d H:i)'];
1081$LANG_CONF['security.enableLoginOnly'] = [0 => 'checkbox', 1 => 'Complete secured FAQ'];
1082
1083// added v2.7.0-RC - 2011-08-18 by Thorsten
1084$PMF_LANG['securityControlCenter'] = 'Security';
1085$PMF_LANG['ad_search_delsuc'] = 'The search term was successfully deleted.';
1086$PMF_LANG['ad_search_delfail'] = 'The search term was not deleted.';
1087
1088// added 2.7.1 - 2011-09-30 by Thorsten
1089$PMF_LANG['msg_about_faq'] = 'About this FAQ';
1090$LANG_CONF['security.useSslOnly'] = [0 => 'checkbox', 1 => 'FAQ with SSL only'];
1091$PMF_LANG['msgTableOfContent'] = 'Table of Content';
1092
1093// added 2.7.5 - 2012-03-02 by Thorsten
1094$PMF_LANG["msgExportAllFaqs"] = "Print all as PDF";
1095$PMF_LANG["ad_online_verification"] = "Online verification check";
1096$PMF_LANG["ad_verification_button"] = "Click to verify your phpMyFAQ installation";
1097$PMF_LANG["ad_verification_notokay"] = "Your version of phpMyFAQ has local changes";
1098$PMF_LANG["ad_verification_okay"] = "Your version of phpMyFAQ was successfully verified.";
1099
1100// added v2.8.0-alpha - 2011-09-29 by Thorsten
1101$PMF_LANG['ad_menu_searchfaqs'] = 'Search for FAQs';
1102
1103// added v2.8.0-alpha - 2012-01-13 by Peter
1104$LANG_CONF["records.enableCloseQuestion"] = [0 => "checkbox", 1 => "Close open question after answer?"];
1105$LANG_CONF["records.enableDeleteQuestion"] = [0 => "checkbox", 1 => "Delete open question after answer?"];
1106$PMF_LANG["msg2answerFAQ"] = "Answered";
1107
1108// added v2.8.0-alpha - 2012-01-16 by Thorsten
1109$PMF_LANG["headerUserControlPanel"] = 'User Control Panel';
1110
1111// added v2.8.0-alpha2 - 2012-03-15 by Thorsten
1112$PMF_LANG["rememberMe"] = 'Log me on automatically next time';
1113$PMF_LANG["ad_menu_instances"] = "FAQ Multi-sites";
1114
1115// added v2.8.0-alpha2 - 2012-07-07 by Anatoliy
1116$LANG_CONF['records.autosaveActive'] = [0 => 'checkbox', 1 => 'Activate FAQ auto-saving'];
1117$LANG_CONF['records.autosaveSecs'] = [0 => 'input', 1 => 'Interval for auto-saving in seconds, default 180'];
1118
1119// added v2.8.0-alpha2 - 2012-08-06 by Thorsten
1120$PMF_LANG['ad_record_inactive'] = 'FAQs inactive';
1121$LANG_CONF["main.maintenanceMode"] = [0 => "checkbox", 1 => "Set FAQ in maintenance mode"];
1122$PMF_LANG['msgMode'] = "Modus";
1123$PMF_LANG['msgMaintenanceMode'] = "FAQ is in maintenance";
1124$PMF_LANG['msgOnlineMode'] = "FAQ is online";
1125
1126// added v2.8.0-alpha3 - 2012-08-30 by Thorsten
1127$PMF_LANG['msgShowMore'] = "show more";
1128$PMF_LANG['msgQuestionAnswered'] = "Question answered";
1129$PMF_LANG['msgMessageQuestionAnswered'] = "Your question at %s was answered. Please check it here";
1130
1131// added v2.8.0-alpha3 - 2012-11-03 by Thorsten
1132$PMF_LANG['rightsLanguage']['addattachment'] = "Add attachments";
1133$PMF_LANG['rightsLanguage']['editattachment'] = "Edit attachments";
1134$PMF_LANG['rightsLanguage']['delattachment'] = "Delete attachments";
1135$PMF_LANG['rightsLanguage']['dlattachment'] = "Download attachments";
1136$PMF_LANG['rightsLanguage']['reports'] = "Generate reports";
1137$PMF_LANG['rightsLanguage']['addfaq'] = "Add FAQs in the frontend";
1138$PMF_LANG['rightsLanguage']['addquestion'] = "Add questions in the frontend";
1139$PMF_LANG['rightsLanguage']['addcomment'] = "Add comments in the frontend";
1140$PMF_LANG['rightsLanguage']['editinstances'] = "Edit Multi-Sites";
1141$PMF_LANG['rightsLanguage']['addinstances'] = "Add Multi-Sites";
1142$PMF_LANG['rightsLanguage']['delinstances'] = "Delete Multi-Sites";
1143$PMF_LANG['rightsLanguage']['export'] = "Export FAQs";
1144
1145// added v2.8.0-beta - 2012-12-24 by Thorsten
1146$LANG_CONF["records.randomSort"] = [0 => "checkbox", 1 => "Sort FAQs randomly"];
1147$LANG_CONF['main.enableWysiwygEditorFrontend'] = [0 => "checkbox", 1 => "Enable bundled WYSIWYG editor in frontend"];
1148
1149// added v2.8.0-beta3 - 2013-01-15 by Thorsten
1150$LANG_CONF["main.enableGravatarSupport"] = [0 => "checkbox", 1 => "Gravatar Support"];
1151
1152// added v2.8.0-RC - 2013-01-29 by Thorsten
1153$PMF_LANG["ad_stopwords_desc"] = "Please select a language to add or edit stop words.";
1154$PMF_LANG["ad_visits_per_day"] = "Visits per day";
1155
1156// added v2.8.0-RC2 - 2013-02-17 by Thorsten
1157$PMF_LANG["ad_instance_add"] = "Add a new phpMyFAQ multi site instance";
1158$PMF_LANG["ad_instance_error_notwritable"] = "The folder /multisite isn\'t writable.";
1159$PMF_LANG["ad_instance_url"] = "Instance URL";
1160$PMF_LANG["ad_instance_path"] = "Instance path";
1161$PMF_LANG["ad_instance_name"] = "Instance name";
1162$PMF_LANG["ad_instance_email"] = "Your admin email";
1163$PMF_LANG["ad_instance_admin"] = "Admin login name";
1164$PMF_LANG["ad_instance_password"] = "Admin password";
1165$PMF_LANG["ad_instance_hint"] = "Caution: It will take some seconds to create a new phpMyFAQ instance!";
1166$PMF_LANG["ad_instance_button"] = "Save instance";
1167$PMF_LANG["ad_instance_error_cannotdelete"] = "Could not delete instance ";
1168$PMF_LANG["ad_instance_config"] = "Instance configuration";
1169
1170// added v2.8.0-RC3 - 2013-03-03 by Thorsten
1171$PMF_LANG["msgAboutThisNews"] = "About this news";
1172
1173// added v.2.8.1 - 2013-06-23 by Thorsten
1174$PMF_LANG["msgAccessDenied"] = "Access denied.";
1175
1176// added v.2.8.21 - 2015-02-17 by Thorsten
1177$PMF_LANG['msgSeeFAQinFrontend'] = 'See FAQ in Frontend';
1178
1179// added v.2.9.0-alpha - 2013-12-26 by Thorsten
1180$PMF_LANG["msgRelatedTags"] = 'Add Search Word';
1181$PMF_LANG["msgPopularTags"] = 'Most popular searches';
1182$LANG_CONF["search.enableHighlighting"] = [0 => "checkbox", 1 => "Highlight search terms"];
1183$LANG_CONF["main.enableRssFeeds"] = [0 => "checkbox", 1 => "RSS Feeds"];
1184$LANG_CONF["records.allowCommentsForGuests"] = [0 => "checkbox", 1 => "Allow comments for guests"];
1185$LANG_CONF["records.allowQuestionsForGuests"] = [0 => "checkbox", 1 => "Allow adding questions for guests"];
1186$LANG_CONF["records.allowNewFaqsForGuests"] = [0 => "checkbox", 1 => "Allow adding new FAQs"];
1187$PMF_LANG["ad_searchterm_del"] = 'Delete all logged search terms';
1188$PMF_LANG["ad_searchterm_del_suc"] = 'Deleted successfully all search terms.';
1189$PMF_LANG["ad_searchterm_del_err"] = 'Couldn\'t delete all search terms.';
1190$LANG_CONF["records.hideEmptyCategories"] = [0 => "checkbox", 1 => "Hide empty categories"];
1191$LANG_CONF["search.searchForSolutionId"] = [0 => "checkbox", 1 => "Search for solution ID"];
1192$LANG_CONF["socialnetworks.disableAll"] = [0 => "checkbox", 1 => "Disable all social networks"];
1193$LANG_CONF["main.enableGzipCompression"] = [0 => "checkbox", 1 => "Enable GZIP compression"];
1194
1195// added v2.9.0-alpha2 - 2014-08-16 by Thorsten
1196$PMF_LANG["ad_tag_delete_success"] = "The tag was deleted successfully.";
1197$PMF_LANG["ad_tag_delete_error"] = "The tag was not deleted because an error occurred.";
1198$PMF_LANG["seoCenter"] = "SEO";
1199$LANG_CONF["seo.metaTagsHome"] = [0 => "select", 1 => "Meta Tags start page"];
1200$LANG_CONF["seo.metaTagsFaqs"] = [0 => "select", 1 => "Meta Tags FAQs"];
1201$LANG_CONF["seo.metaTagsCategories"] = [0 => "select", 1 => "Meta Tags category pages"];
1202$LANG_CONF["seo.metaTagsPages"] = [0 => "select", 1 => "Meta Tags static pages"];
1203$LANG_CONF["seo.metaTagsAdmin"] = [0 => "select", 1 => "Meta Tags Admin"];
1204$PMF_LANG["msgMatchingQuestions"] = "The following results closely matched your question";
1205$PMF_LANG["msgFinishSubmission"] = "If none of the suggestions above match your question, click the button below to finish submitting your question.";
1206$LANG_CONF["main.enableLinkVerification"] = [0 => "checkbox", 1 => "Enable automatic link verification"];
1207$LANG_CONF['spam.manualActivation'] = [0 => 'checkbox', 1 => 'Manually activate new users (default: activated)'];
1208
1209// added v2.9.0-alpha2 - 2014-10-13 by Christopher Andrews ( Chris--A )
1210$PMF_LANG['mailControlCenter'] = 'Mail setup';
1211$LANG_CONF['mail.remoteSMTP'] = [0 => 'checkbox', 1 => 'Use remote SMTP server (default: deactivated)'];
1212$LANG_CONF['mail.remoteSMTPServer'] = [0 => 'input', 1 => 'Server address'];
1213$LANG_CONF['mail.remoteSMTPUsername'] = [0 => 'input', 1 => 'User name'];
1214$LANG_CONF['mail.remoteSMTPPassword'] = [0 => 'password', 1 => 'Password'];
1215$LANG_CONF['security.enableRegistration'] = ['checkbox', 'Enable registration for visitors'];
1216
1217// added v2.9.0-alpha3 - 2015-02-08 by Thorsten
1218$LANG_CONF['main.customPdfHeader'] = ['area', 'Custom PDF Header (HTML allowed)'];
1219$LANG_CONF['main.customPdfFooter'] = ['area', 'Custom PDF Footer (HTML allowed)'];
1220$LANG_CONF['records.allowDownloadsForGuests'] = ['checkbox', 'Allow downloads for guests'];
1221$PMF_LANG["ad_msgNoteAboutPasswords"] = "Attention! If you enter a password, you overwrite the password of the user.";
1222$PMF_LANG["ad_delete_all_votings"] = "Clear all votings";
1223$PMF_LANG["ad_categ_moderator"] = "Moderators";
1224$PMF_LANG['ad_clear_all_visits'] = "Clear all visits";
1225$PMF_LANG['ad_reset_visits_success'] = 'The visits were resetted successfully.';
1226$LANG_CONF['main.enableMarkdownEditor'] = ['checkbox', 'Enable bundled Markdown editor'];
1227
1228// added v2.9.0-beta - 2015-09-27 by Thorsten
1229$PMF_LANG['faqOverview'] = 'FAQ Overview';
1230$PMF_LANG['ad_dir_missing'] = 'The directory %s is missing.';
1231$LANG_CONF['main.enableSmartAnswering'] = ['checkbox', 'Enable smart answering for user questions'];
1232
1233// added v2.9.0-beta2 - 2015-12-23 by Thorsten
1234$LANG_CONF['search.enableElasticsearch'] = ['checkbox', 'Enable Elasticsearch support'];
1235$PMF_LANG['ad_menu_elasticsearch'] = 'Elasticsearch configuration';
1236$PMF_LANG['ad_es_create_index'] = 'Create Index';
1237$PMF_LANG['ad_es_drop_index'] = 'Drop Index';
1238$PMF_LANG['ad_es_bulk_index'] = 'Full import';
1239$PMF_LANG['ad_es_create_index_success'] = 'Index successfully created.';
1240$PMF_LANG['ad_es_create_import_success'] = 'Import was successful.';
1241$PMF_LANG['ad_es_drop_index_success'] = 'Index successfully dropped.';
1242$PMF_LANG['ad_export_generate_json'] = 'Create JSON file';
1243$PMF_LANG['ad_image_name_search'] = 'Search for image name';
1244
1245// added v2.9.0-RC - 2016-02-19 by Thorsten
1246$PMF_LANG['ad_admin_notes'] = 'Private Notes';
1247$PMF_LANG['ad_admin_notes_hint'] = '%s (only visible for editors)';
1248
1249// added v2.9.10 - 2018-02-17 by Thorsten
1250$PMF_LANG['ad_quick_entry'] = 'Add new FAQ in this category';
1251
1252// added 2.10.0-alpha - 2016-08-08 by Thorsten
1253$LANG_CONF['ldap.ldap_mapping.nae'] = [0 => 'input', 1 => 'LDAP mapping for name, "cn" when using an ADS'];
1254$LANG_CONF['ldap.ldap_mapping.username'] = [0 => 'input', 1 => 'LDAP mapping for username, "samAccountName" when using an ADS'];
1255$LANG_CONF['ldap.ldap_mapping.mail'] = [0 => 'input', 1 => 'LDAP mapping for email, "mail" when using an ADS'];
1256$LANG_CONF['ldap.ldap_mapping.memberOf'] = [0 => 'input', 1 => 'LDAP mapping for "member of" when using LDAP groups'];
1257$LANG_CONF['ldap.ldap_use_domain_prefix'] = ['checkbox', 'LDAP domain prefix, e.g. "DOMAIN\username"'];
1258$LANG_CONF['ldap.ldap_options.LDAP_OPT_PROTOCOL_VERSION'] = [0 => 'input', 1 => 'LDAP protocol version (default: 3)'];
1259$LANG_CONF['ldap.ldap_options.LDAP_OPT_REFERRALS'] = [0 => 'input', 1 => 'LDAP referrals (default: 0)'];
1260$LANG_CONF['ldap.ldap_use_memberOf'] = ['checkbox', 'Enable LDAP group support, e.g. "DOMAIN\username"'];
1261$LANG_CONF['ldap.ldap_use_sasl'] = ['checkbox', 'Enable LDAP SASL support'];
1262$LANG_CONF['ldap.ldap_use_multiple_servers'] = ['checkbox', 'Enable multiple LDAP servers support'];
1263$LANG_CONF['ldap.ldap_use_anonymous_login'] = ['checkbox', 'Enable anonymous LDAP connections'];
1264$LANG_CONF['ldap.ldap_use_dynamic_login'] = ['checkbox', 'Enable LDAP dynamic user binding'];
1265$LANG_CONF['ldap.ldap_dynamic_login_attribute'] = [0 => 'input', 1 => 'LDAP attribute for dynamic user binding, "uid" when using an ADS'];
1266$LANG_CONF['seo.enableXMLSitemap'] = ['checkbox', 'Enable XML sitemap'];
1267$PMF_LANG['ad_category_image'] = 'Entity image';
1268$PMF_LANG["ad_user_show_home"] = "Show on startpage";
1269
1270// added v.2.10.0-alpha - 2017-11-09 by Brian Potter (BrianPotter)
1271$PMF_LANG['ad_view_faq'] = 'View FAQ';
1272
1273// added 3.0.0-alpha - 2018-01-04 by Thorsten
1274$LANG_CONF['main.enableCategoryRestrictions'] = ['checkbox', 'Enable category restrictions'];
1275$LANG_CONF['main.enableSendToFriend'] = ['checkbox', 'Enable send to friends'];
1276$PMF_LANG['msgUserRemovalText'] = 'You can request the deletion of your account and personal data. An email will be sent to the admin team. The team will delete your account, comments and questions. Since this is a manual process, it can take up to 24 hours. After this you will receive a deletion confirmation  by email. ';
1277$PMF_LANG["msgUserRemoval"] = "Request user removal";
1278$PMF_LANG["ad_menu_RequestRemove"] = "Request user removal";
1279$PMF_LANG["msgContactRemove"] = "Deletion request from admin team";
1280$PMF_LANG["msgContactPrivacyNote"] = "Please notice our";
1281$PMF_LANG["msgPrivacyNote"] = "Privacy Statement";
1282
1283// added 3.0.0-alpha2 - 2018-03-27 by Thorsten
1284$LANG_CONF['main.enableAutoUpdateHint'] = ['checkbox', 'Automatic check for new versions'];
1285$PMF_LANG['ad_user_is_superadmin'] = 'Super-Admin';
1286$PMF_LANG['ad_user_override_passwd'] = 'Override password';
1287$LANG_CONF['records.enableAutoRevisions'] = ['checkbox', 'Versioning of all FAQ changes'];
1288$PMF_LANG['rightsLanguage']['view_faqs'] = 'View FAQs';
1289$PMF_LANG['rightsLanguage']['view_categories'] = 'View categories';
1290$PMF_LANG['rightsLanguage']['view_sections'] = 'View sections';
1291$PMF_LANG['rightsLanguage']['view_news'] = 'View news';
1292$PMF_LANG['rightsLanguage']['add_section'] = 'Add sections';
1293$PMF_LANG['rightsLanguage']['edit_section'] = 'Edit sections';
1294$PMF_LANG['rightsLanguage']['delete_section'] = 'Delete sections';
1295$PMF_LANG['rightsLanguage']['administrate_sections'] = 'Administrate sections';
1296$PMF_LANG['rightsLanguage']['administrate_groups'] = 'Administrate groups';
1297$PMF_LANG['ad_group_rights'] = 'Group permissions';
1298$PMF_LANG['ad_menu_meta'] = 'Template meta data';
1299$PMF_LANG['ad_meta_add'] = 'Add template meta data';
1300$PMF_LANG['ad_meta_page_id'] = 'Page type';
1301$PMF_LANG['ad_meta_type'] = 'Content type';
1302$PMF_LANG['ad_meta_content'] = 'Content';
1303$PMF_LANG['ad_meta_copy_snippet'] = 'Copy code snippet for templates';
1304
1305// added v3.0.0-alpha.3 - 2018-09-20 by Timo
1306$PMF_LANG['ad_menu_section_administration'] = "Sections";
1307$PMF_LANG['ad_section_add'] = "Add Section";
1308$PMF_LANG['ad_section_add_link'] = "Add Section";
1309$PMF_LANG['ad_sections'] = 'Sections';
1310$PMF_LANG['ad_section_details'] = "Section Details";
1311$PMF_LANG['ad_section_name'] = "Name";
1312$PMF_LANG['ad_section_description'] = "Description";
1313$PMF_LANG['ad_section_membership'] = "Section Assignment";
1314$PMF_LANG['ad_section_members'] = "Assignments";
1315$PMF_LANG['ad_section_addMember'] = "+";
1316$PMF_LANG['ad_section_removeMember'] = "-";
1317$PMF_LANG['ad_section_deleteSection'] = "Delete Section";
1318$PMF_LANG['ad_section_deleteQuestion'] = "Are you sure you want to delete this section?";
1319$PMF_LANG['ad_section_error_delete'] = "Section could not be deleted. ";
1320$PMF_LANG['ad_section_error_noName'] = "Please enter a section name. ";
1321$PMF_LANG['ad_section_suc'] = "Section <strong>successfully</strong> added.";
1322$PMF_LANG['ad_section_deleted'] = "The section was successfully deleted.";
1323$PMF_LANG['rightsLanguage']['viewadminlink'] = 'View admin link';
1324
1325// added v3.0.0-beta.3 - 2019-09-22 by Thorsten
1326$LANG_CONF['mail.remoteSMTPPort'] = [0 => 'input', 1 => 'SMTP server port'];
1327$LANG_CONF['mail.remoteSMTPEncryption'] = [0 => 'input', 1 => 'SMTP server encryption'];
1328$PMF_LANG['ad_record_faq'] = 'Question and answer';
1329$PMF_LANG['ad_record_permissions'] = 'Permissions';
1330$PMF_LANG['loginPageMessage'] = 'Log in to ';
1331
1332// added v3.0.5 - 2020-10-03 by Thorsten
1333$PMF_LANG['ad_menu_faq_meta'] = 'FAQ meta data';
1334
1335// added v3.0.8 - 2021-01-22
1336$LANG_CONF['main.privacyURL'] = ['input', 'URL for Privacy note'];
1337