source: forum/language/lang_czech/lang_smartfeed.php@ 5

Last change on this file since 5 was 5, checked in by george, 18 years ago

import

File size: 10.3 KB
Line 
1<?php
2/***************************************************************************
3 lang_smartfeed.php
4 -------------------
5 begin : Thurs Dec 29 2005
6 copyright : (C) 2000 The phpBB Group
7 email : mhamill@computer.org
8
9 $Id: $
10
11 ***************************************************************************/
12
13/***************************************************************************
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 ***************************************************************************/
21
22// lang_smartfeed.php
23// Written by Mark D. Hamill, mhamill@computer.org
24// This software is designed to work with phpBB Version 2.0.19
25
26if ( !defined('IN_PHPBB') )
27{
28 die('Hacking attempt');
29}
30
31$lang['smartfeed_atom_10'] = 'Atom 1.0';
32$lang['smartfeed_rss_20'] = 'RSS 2.0';
33$lang['smartfeed_rss_10'] = 'RSS 1.0';
34$lang['smartfeed_rss_091'] = 'RSS 0.91 (RDF) - 15 items maximum';
35
36$lang['smartfeed_copyright'] = ''; // Add a copyright statement for your site if it applies
37$lang['smartfeed_editor'] = ''; // Most likely your site will not have a managing editor. If so enter email address of managing editor
38$lang['smartfeed_webmaster'] = ''; // If so inclined, enter email address of the webmaster of the phpBB forum
39
40// Various error messages. Customize or internationalize as you prefer.
41$lang['smartfeed_error_title'] = 'Error in your SmartFeed URL';
42$lang['smartfeed_error_introduction'] = 'There is an error in the URL you used to retrieve this newsfeed. As a result, no content can be returned. Use this error information as a guide to correcting the problem. Please note that you must use <a href="' . SITE_URL . 'smartfeed_url.' . $phpEx .'">this program</a> to create a URL that can be used with SmartFeed. The error is: ';
43$lang['smartfeed_no_p_param'] = 'The "u" parameter must be used with the "p" parameter. ';
44$lang['smartfeed_no_u_param'] = 'The "p" parameter must be used with the "u" parameter. ';
45$lang['smartfeed_user_table_count_error'] = 'Database error in obtaining count from users table.';
46$lang['smartfeed_user_id_does_not_exist'] = '"u" parameter does not match a user_id %s on this site, therefore no articles can be returned.';
47$lang['smartfeed_user_table_password_error'] = 'Database error in obtaining password from users table.';
48$lang['smartfeed_bad_password_error'] = 'Authentication failure. "p" parameter "%s" is invalid with "u" parameter of "%s". This error may be caused by changing your phpBB password, or due to an upgrade in this SmartFeed software. To solve this problem, create a new SmartFeed URL at ' . SITE_URL . "smartfeed_url.$phpEx, then copy and paste the generated URL into your newsreader application.";
49$lang['smartfeed_forum_access_reg'] = 'Error retrieving a list forum_ids that all members can access.';
50$lang['smartfeed_forum_access_priv'] = 'Error retrieving a list forum_ids that are private.';
51$lang['smartfeed_user_error'] = 'Error retrieving user_lastvisit from users table.';
52$lang['smartfeed_limit_format_error'] = 'Limit parameter is not a recognized value.';
53$lang['smartfeed_retrieve_error'] = 'Unable to retrieve information from database to create newsfeed.';
54$lang['smartfeed_feed_type_error'] = 'SmartFeed does not accept the feed type requested.';
55$lang['smartfeed_sort_by_error'] = 'SmartFeed cannot accept the sort type requested.';
56$lang['smartfeed_topics_only_error'] = 'SmartFeed does not accept the topic type value requested.';
57$lang['smartfeed_lastvisit_param'] = 'The lastvisit parameter specified is invalid.';
58$lang['smartfeed_reset_error'] = 'Database error: Unable to reset your last visit date.';
59$lang['smartfeed_ip_auth_error'] = 'This URL cannot be used to retrieve a newsfeed this newsfeed from this IP address. Run smartfeed_url.' . $phpEx . ' from this machine and use the newly generated URL to retrieve a newsfeed.';
60$lang['smartfeed_not_logged_in'] = '<b>Because you are not logged into the site, you can only subscribe to the list of public forums shown below. Please <a href="' . append_sid("login.$phpEx?redirect=smartfeed_url.$phpEx", true) . '">log in</a> or <a href="./profile.$phpEx?mode=register">register </a> if you want to also subscribe to nonpublic forums.</b>';
61$lang['smartfeed_remove_yours_error'] = 'The removemine parameter value is invalid';
62$lang['smartfeed_no_arguments'] = 'This program requires arguments.';
63
64// Miscellaneous variables
65$lang['smartfeed_feed_title'] = $board_config['sitename'];
66$lang['smartfeed_feed_description'] = $board_config['site_desc'];
67$lang['smartfeed_image_title'] = $board_config['site_desc'] . ' Logo';
68$lang['smartfeed_wrote'] = 'wrote';
69$lang['smartfeed_reply'] = '(reply)';
70$lang['smartfeed_at'] = 'at';
71
72// These are used by smartfeed_url.php
73$lang['smartfeed_feed_type'] = '<b>Select type of newsfeed:</b><br />(Make sure you choose a format supported by your newsreader)';
74$lang['smartfeed_page_title'] = 'SmartFeed';
75$lang['smartfeed_explanation'] = "Many people are discovering the convenience of syndicated newsfeeds. Using newsfeeds, you do not have to visit the site to read its content. A program called a <i>web aggregator</i> fetches and presents news from multiple web sites for you.<br /><br />\r\nSome forums on this site may be read by members only, or require that you to subscribe to an appropriate usergroup. Normally, these forums would not be accessible as a public newsfeed. However, this site is enabled with <em>SmartFeed</em>. This is a phpBB modification that allows logged in users to access both restricted and unrestricted forums on this site as a newsfeed. This is done by authenticating yourself with a special URL that you create on this page. You select the forums on this site that interest you that you want included in your customized newsfeed. You can choose the type of newsfeed format that you prefer. SmartFeed supports the RSS and Atom protocols. Make sure you pick the correct format that you need. By pressing the Generate URL button near the bottom of this page, you can see the special URL that you will use. Copy and paste this information into your newsreader to access this site with your newsreader.<br /><br />\r\nIf you are new to newsfeeds and web aggregators, we suggest you read <a href=\"http://en.wikipedia.org/wiki/News_aggregator\">this Wikipedia topic</a>. It includes a link to various newsreaders that you may wish to download. You may prefer to access newsfeeds via websites such as <a href=\"http://www.bloglines.com\">Bloglines</a> created for this purpose.<br /><br />If you have not registered on this site, you can still get a newsfeed. However, you can only select from public forums.";
76$lang['smartfeed_lastvisit'] = '<b>Reset your last visit date when you access the newsfeed?</b><br />(Select "Yes" if you will ordinarily use a newsfeed to read content on this site. Select "No" if you regularly visit this site <i>and</i> you want items in the newsfeed to appear as unread when you visit the site. Caution: Selecting "No" may give you very long newsfeeds. In addition, you may notice redundant articles the next time you access your newsfeed.)';
77$lang['smartfeed_yes'] = 'Yes';
78$lang['smartfeed_no'] = 'No';
79$lang['smartfeed_all_forums']='All Subscribed Forums';
80$lang['smartfeed_select_forums']='<b>Newsfeeds should include posts for these forums:</b>';
81$lang['smartfeed_generate_url_text']='Generate URL';
82$lang['smartfeed_reset_text']='Reset';
83$lang['smartfeed_auth_reg_text']='<i>(Registered Users Only)</i>';
84$lang['smartfeed_auth_acl_text']='<i>(Usergroup Members Only)</i>';
85$lang['smartfeed_auth_mod_text']='<i>(Moderators Only)</i>';
86$lang['smartfeed_auth_admin_text']='<i>(Administrators Only)</i>';
87$lang['smartfeed_limit_text']='<b>When fetching posts, limit newsfeed to posts:</b><br />(If you are using a browser extension like Sage for Firefox as your news reader, a persistent cookie annotating the last time you accessed the newsfeed will be set. Note that most desktop news readers will ignore cookies.)';
88$lang['smartfeed_since_last_fetch_or_visit']='Since Last Newsfeed Fetch or Board Visit';
89$lang['smartfeed_since_last_fetch_or_visit_value']='LF';
90$lang['smartfeed_last_week']='Since Last Week';
91$lang['smartfeed_last_week_value']='7 DAY';
92$lang['smartfeed_last_day']='In Last 24 Hours';
93$lang['smartfeed_last_day_value']='1 DAY';
94$lang['smartfeed_last_12_hours']='In Last 12 Hours';
95$lang['smartfeed_last_12_hours_value']='12 HOUR';
96$lang['smartfeed_last_6_hours']='In Last 6 Hours';
97$lang['smartfeed_last_6_hours_value']='6 HOUR';
98$lang['smartfeed_last_3_hours']='In Last 3 Hours';
99$lang['smartfeed_last_3_hours_value']='3 HOUR';
100$lang['smartfeed_last_1_hours']='In Last Hour';
101$lang['smartfeed_last_1_hours_value']='1 HOUR';
102$lang['smartfeed_last_30_minutes']='In Last 30 Minutes';
103$lang['smartfeed_last_30_minutes_value']='30 MINUTE';
104$lang['smartfeed_last_15_minutes']='In Last 15 Minutes';
105$lang['smartfeed_last_15_minutes_value']='15 MINUTE';
106$lang['smartfeed_sort_by']='<b>Sort by:</b>';
107$lang['smartfeed_sort_forum_topic']='Category Order, Forum Order, Forum Topic Last Post Time (Desc), Topic Post Date/Time';
108$lang['smartfeed_sort_post_date']='Post Date/Time';
109$lang['smartfeed_no_forums_selected']='You have not selected any forums, so no URL can be generated. Please select at least one forum.';
110$lang['smartfeed_topics_only']='<b>Show only new topics?</b>';
111$lang['smartfeed_url_label']='After you press the Generate URL button, the URL you need will appear in the box below. <b>Copy and paste this information into your newsreader.</b> If you change your options, press the Generate URL button again and you will get a different URL.';
112$lang['smartfeed_ip_auth']='<b>Enable Newsfeed IP Authentication?</b><br />(This can be used as an addition security precaution to limit URL hijacking. The URL that is generated will only be good for the range of IP addresses associated with your computer. For example, if your current IP is 123.45.67.89 and IP Authentication is enabled then the feed will only work in the address range 123.45.67.*.)';
113$lang['smartfeed_remove_yours']='<b>Remove your posts from the feed?</b>';
114?>
Note: See TracBrowser for help on using the repository browser.