Project

General

Profile

« Previous | Next » 

Revision 1458

Added by Dietmar almost 13 years ago

Ticket 833 fixed markup for table cells in view.php
change themes.css to make style more flexible in success.htt and error.htt
backend themes: add js function redirect_to_page(url, timer) to redirect without message

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.8.2 ------------------------------------
14
26 Jun-2011 Build 1458 Dietmar Woellbrink (Luisehahne)
15
# Ticket 833 fixed markup for table cells in view.php
16
! change themes.css to make style more flexible in success.htt and error.htt
17
+ backend themes: add js function redirect_to_page(url, timer) to redirect without message
14 18
25 Jun-2011 Build 1457 Dietmar Woellbrink (Luisehahne)
15 19
! Preparing 2.8.2 stable, last tests
16 20
10 Jun-2011 Build 1456 Dietmar Woellbrink (Luisehahne)
branches/2.8.x/wb/admin/interface/version.php
52 52

  
53 53
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
54 54
if(!defined('VERSION')) define('VERSION', '2.8.2.RC6');
55
if(!defined('REVISION')) define('REVISION', '1457');
55
if(!defined('REVISION')) define('REVISION', '1458');
56 56

  
57 57
?>
branches/2.8.x/wb/framework/class.wb.php
399 399
	    }
400 400
	    $tpl->parse( 'main', 'main_block', false );
401 401
	    $tpl->pparse( 'output', 'page' );
402
		exit();
403 402
	}
404 403

  
405 404
	// Print an error message
branches/2.8.x/wb/templates/wb_theme/jquery/jquery-plugins.js
1
$(document).ready(function()
2
{
3

  
4
        if($(".jcalendar").length) {
5
            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
6
          }
7

  
8
        if($(".jsadmin").length) {
9
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
10
          }
11

  
12
	//Add external link class to external links -
13
	$('a[href^="http://"]').filter(function() {
14
		//Compare the anchor tag's host name with location's host name
15
	    return this.hostname && this.hostname !== location.hostname;
16
	  }).addClass("external").attr("target", "_blank");
17

  
18
	/* Add internal link class to external links -   */
19
	$('a[href^="http://"]').filter(function() {
20
		//Compare the anchor tag's host name with location's host name
21
	    return this.hostname && this.hostname == location.hostname;
22
	  }).addClass("internal");
23

  
24
	$('form').attr('autocomplete', 'off');
25

  
1
function include_file(filename, filetype) {
2

  
3
	if(!filetype)
4
		var filetype = 'js'; //js default filetype
5

  
6
	var th = document.getElementsByTagName('head')[0];
7
	var s = document.createElement((filetype == "js") ? 'script' : 'link');
8

  
9
	s.setAttribute('type',(filetype == "js") ? 'text/javascript' : 'text/css');
10

  
11
	if (filetype == "css")
12
		s.setAttribute('rel','stylesheet');
13

  
14
	s.setAttribute((filetype == "js") ? 'src' : 'href', filename);
15
	th.appendChild(s);
16

  
17
}
18

  
19
function redirect_to_page (url, timer) {
20
	setTimeout('self.location.href="'+url+'"', timer);
21
}
22

  
23
$(document).ready(function()
24
{
25

  
26
        if($(".jcalendar").length) {
27
            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
28
          }
29

  
30
        if($(".jsadmin").length) {
31
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
32
          }
33

  
34
	//Add external link class to external links -
35
	$('a[href^="http://"]').filter(function() {
36
		//Compare the anchor tag's host name with location's host name
37
	    return this.hostname && this.hostname !== location.hostname;
38
	  }).addClass("external").attr("target", "_blank");
39

  
40
	/* Add internal link class to external links -   */
41
	$('a[href^="http://"]').filter(function() {
42
		//Compare the anchor tag's host name with location's host name
43
	    return this.hostname && this.hostname == location.hostname;
44
	  }).addClass("internal");
45

  
46
	$('form').attr('autocomplete', 'off');
47

  
26 48
});
branches/2.8.x/wb/templates/wb_theme/theme.css
152 152
.section-info { margin : 1.5em 0; }
153 153

  
154 154
.rounded { border-radius :10px; -khtml-border-radius :10px; -webkit-border-radius :10px; -moz-border-radius :10px; }
155
.bigger { font-size :150%; }
156
.strong { font-weight :bold; }
157

  
155 158
.msg-box { background : #e5ffe6; border :0.2em #009900 solid; color :#336600; margin-bottom :1em; padding :0.63em; text-align :center; }
156 159
.error-box { background :#fee; border :0.2em #844 solid; color :#400; margin-bottom :1em; padding :0.63em; text-align :center; }
157
.bigger { font-size :150%; }
158
.strong { font-weight :bold; }
160
.msg-box p,
161
.error-box p { font-size :120%; }
branches/2.8.x/wb/templates/argos_theme/jquery/jquery-plugins.js
1
$(document).ready(function()
2
{
3

  
4
        if($(".jcalendar").length) {
5
            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
6
          }
7

  
8
        if($(".jsadmin").length) {
9
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
10
          }
11
	//Add external link class to external links -
12
	$('a[href^="http://"]').filter(function() {
13
		//Compare the anchor tag's host name with location's host name
14
	    return this.hostname && this.hostname !== location.hostname;
15
	  }).addClass("external").attr("target", "_blank");
16

  
17
	/* Add internal link class to external links -   */
18
	$('a[href^="http://"]').filter(function() {
19
		//Compare the anchor tag's host name with location's host name
20
	    return this.hostname && this.hostname == location.hostname;
21
	  }).addClass("internal");
22

  
23
	$('form').attr('autocomplete', 'off');
24

  
1
function include_file(filename, filetype) {
2

  
3
	if(!filetype)
4
		var filetype = 'js'; //js default filetype
5

  
6
	var th = document.getElementsByTagName('head')[0];
7
	var s = document.createElement((filetype == "js") ? 'script' : 'link');
8

  
9
	s.setAttribute('type',(filetype == "js") ? 'text/javascript' : 'text/css');
10

  
11
	if (filetype == "css")
12
		s.setAttribute('rel','stylesheet');
13

  
14
	s.setAttribute((filetype == "js") ? 'src' : 'href', filename);
15
	th.appendChild(s);
16

  
17
}
18

  
19
function redirect_to_page (url, timer) {
20
	setTimeout('self.location.href="'+url+'"', timer);
21
}
22

  
23
$(document).ready(function()
24
{
25

  
26
        if($(".jcalendar").length) {
27
            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
28
          }
29

  
30
        if($(".jsadmin").length) {
31
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
32
          }
33
	//Add external link class to external links -
34
	$('a[href^="http://"]').filter(function() {
35
		//Compare the anchor tag's host name with location's host name
36
	    return this.hostname && this.hostname !== location.hostname;
37
	  }).addClass("external").attr("target", "_blank");
38

  
39
	/* Add internal link class to external links -   */
40
	$('a[href^="http://"]').filter(function() {
41
		//Compare the anchor tag's host name with location's host name
42
	    return this.hostname && this.hostname == location.hostname;
43
	  }).addClass("internal");
44

  
45
	$('form').attr('autocomplete', 'off');
46

  
25 47
});
branches/2.8.x/wb/templates/argos_theme/theme.css
181 181
.section-info { margin : 1.5em 0; }
182 182

  
183 183
.rounded { border-radius :10px; -khtml-border-radius :10px; -webkit-border-radius :10px; -moz-border-radius :10px; }
184
.bigger { font-size :150%; }
185
.strong { font-weight :bold; }
186

  
184 187
.msg-box { background : #e5ffe6; border :0.2em #009900 solid; color :#336600; margin-bottom :1em; padding :0.63em; text-align :center; }
185 188
.error-box { background :#fee; border :0.2em #844 solid; color :#400; margin-bottom :1em; padding :0.63em; text-align :center; }
186
.bigger { font-size :150%; }
187
.strong { font-weight :bold; }
189
.msg-box p,
190
.error-box p { font-size :120%; }
branches/2.8.x/wb/modules/news/view.php
375 375
		}
376 376
	} else {
377 377
	    	$wb->print_error($MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'], 'view.php', false);
378
	    	exit(0);
379 378
	}
380 379

  
381 380
	// Print post header
......
420 419
		} else {
421 420
			// Say no comments found
422 421
			$content = '';
423
			if(isset($TEXT['NONE_FOUND'])) {
424
				$content .= '<tr><td>'.$TEXT['NONE_FOUND'].'<br /></td></tr>';
425
			} else {
426
				$content .= '<tr><td>None Found<br /></td></tr>';
427
			}
428
			print $content;
422
			$vars = array('[TITLE]','[COMMENT]','[TEXT_ON]','[DATE]','[TEXT_AT]','[TIME]','[TEXT_BY]','[USER_ID]','[USERNAME]','[DISPLAY_NAME]', '[EMAIL]');
423
			$values = array( '', $MOD_NEWS['NO_COMMENT_FOUND'], '', '', '', '', '', '', '', '');
424
			print str_replace($vars, $values, $setting_comments_loop);
429 425
		}
430 426

  
431 427
		// Print comments footer
branches/2.8.x/wb/modules/news/languages/NL.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19

  
20
//Modul Description
21
$module_description = 'Met deze module maak je een nieuwspagina.';
22

  
23
//Variables for the backend
24
$MOD_NEWS['SETTINGS'] = 'Eigenschappen van de Nieuwsmodule';
25

  
26
//Variables for the frontend
27
$MOD_NEWS['TEXT_READ_MORE'] = 'Lees verder';
28
$MOD_NEWS['TEXT_POSTED_BY'] = 'Geplaatst door';
29
$MOD_NEWS['TEXT_ON'] = 'op';
30
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Laatst vernieuwd';
31
$MOD_NEWS['TEXT_AT'] = 'om';
32
$MOD_NEWS['TEXT_BACK'] = 'Terug';
33
$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaren';
34
$MOD_NEWS['TEXT_COMMENT'] = 'Commentaar';
35
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Toevoegen commentaar';
36
$MOD_NEWS['TEXT_BY'] = 'door';
37
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Pagina niet gevonden';
38
$TEXT['UNKNOWN'] = 'Guest';
39

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19

  
20
//Modul Description
21
$module_description = 'Met deze module maak je een nieuwspagina.';
22

  
23
//Variables for the backend
24
$MOD_NEWS['SETTINGS'] = 'Eigenschappen van de Nieuwsmodule';
25

  
26
//Variables for the frontend
27
$MOD_NEWS['TEXT_READ_MORE'] = 'Lees verder';
28
$MOD_NEWS['TEXT_POSTED_BY'] = 'Geplaatst door';
29
$MOD_NEWS['TEXT_ON'] = 'op';
30
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Laatst vernieuwd';
31
$MOD_NEWS['TEXT_AT'] = 'om';
32
$MOD_NEWS['TEXT_BACK'] = 'Terug';
33
$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaren';
34
$MOD_NEWS['TEXT_COMMENT'] = 'Commentaar';
35
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Toevoegen commentaar';
36
$MOD_NEWS['TEXT_BY'] = 'door';
37
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Pagina niet gevonden';
38
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
39
$TEXT['UNKNOWN'] = 'Guest';
40

  
40 41
?>
branches/2.8.x/wb/modules/news/languages/PL.php
34 34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Dodaj komentarz';
35 35
$MOD_NEWS['TEXT_BY'] = 'Dodano:';
36 36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Strona nie istnieje';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
37 38
$TEXT['UNKNOWN'] = 'Gość';
38 39

  
39 40
?>
branches/2.8.x/wb/modules/news/languages/NO.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Med denne modulen kan du lage Nyhets sider.';
21
  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'Innstillinger for Nyheter';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'Les Mer';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Skervet Av';
28
$MOD_NEWS['TEXT_ON'] = 'P&aring;';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sist Endret';
30
$MOD_NEWS['TEXT_AT'] = 'p&aring;';
31
$MOD_NEWS['TEXT_BACK'] = 'Tilbake';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Legg Til Kommentar';
35
$MOD_NEWS['TEXT_BY'] = 'Av';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Finner ikke siden ';
37
$TEXT['UNKNOWN'] = 'Guest';
38

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Med denne modulen kan du lage Nyhets sider.';
21
  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'Innstillinger for Nyheter';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'Les Mer';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Skervet Av';
28
$MOD_NEWS['TEXT_ON'] = 'P&aring;';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sist Endret';
30
$MOD_NEWS['TEXT_AT'] = 'p&aring;';
31
$MOD_NEWS['TEXT_BACK'] = 'Tilbake';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Legg Til Kommentar';
35
$MOD_NEWS['TEXT_BY'] = 'Av';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Finner ikke siden ';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
38
$TEXT['UNKNOWN'] = 'Guest';
39

  
39 40
?>
branches/2.8.x/wb/modules/news/languages/EN.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'This page type is designed for making a news page.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'News Settings';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'Read More';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
28
$MOD_NEWS['TEXT_ON'] = 'on';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Last changed';
30
$MOD_NEWS['TEXT_AT'] = 'at';
31
$MOD_NEWS['TEXT_BACK'] = 'Back';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Comments';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Comment';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Add Comment';
35
$MOD_NEWS['TEXT_BY'] = 'By';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
37
$TEXT['UNKNOWN'] = 'Guest';
38

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'This page type is designed for making a news page.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'News Settings';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'Read More';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
28
$MOD_NEWS['TEXT_ON'] = 'on';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Last changed';
30
$MOD_NEWS['TEXT_AT'] = 'at';
31
$MOD_NEWS['TEXT_BACK'] = 'Back';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Comments';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Comment';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Add Comment';
35
$MOD_NEWS['TEXT_BY'] = 'By';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
38
$TEXT['UNKNOWN'] = 'Guest';
39

  
39 40
?>
branches/2.8.x/wb/modules/news/languages/DA.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Denne side er beregnet til at lave en nyhedsside.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'Nyhedsindstillinger';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'L&aelig;s mere';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Indsendt af';
28
$MOD_NEWS['TEXT_ON'] = 'den';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sidst &aelig;ndret';
30
$MOD_NEWS['TEXT_AT'] = 'kl.';
31
$MOD_NEWS['TEXT_BACK'] = 'Tilbage';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Tilf&oslash;j kommentar';
35
$MOD_NEWS['TEXT_BY'] = 'Af';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
37
$TEXT['UNKNOWN'] = 'Guest';
38

  
39
?>
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Denne side er beregnet til at lave en nyhedsside.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'Nyhedsindstillinger';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'L&aelig;s mere';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Indsendt af';
28
$MOD_NEWS['TEXT_ON'] = 'den';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sidst &aelig;ndret';
30
$MOD_NEWS['TEXT_AT'] = 'kl.';
31
$MOD_NEWS['TEXT_BACK'] = 'Tilbage';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Tilf&oslash;j kommentar';
35
$MOD_NEWS['TEXT_BY'] = 'Af';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
38
$TEXT['UNKNOWN'] = 'Guest';
39

  
40
?>
branches/2.8.x/wb/modules/news/languages/RU.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = '&#1052;&#1086;&#1076;&#1091;&#1083;&#1100; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1083;&#1077;&#1085;&#1090;&#1099; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1077;&#1081;';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = '&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1085;&#1086;&#1081; &#1083;&#1077;&#1085;&#1090;&#1099;';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = '&#1063;&#1080;&#1090;&#1072;&#1090;&#1100; &#1076;&#1072;&#1083;&#1100;&#1096;&#1077;';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
28
$MOD_NEWS['TEXT_ON'] = 'on';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = '&#1055;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1077; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;';
30
$MOD_NEWS['TEXT_AT'] = 'at';
31
$MOD_NEWS['TEXT_BACK'] = '&#1053;&#1072;&#1079;&#1072;&#1076;';
32
$MOD_NEWS['TEXT_COMMENTS'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1072;&#1088;&#1080;&#1080;';
33
$MOD_NEWS['TEXT_COMMENT'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = '&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
35
$MOD_NEWS['TEXT_BY'] = 'By';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
37
$TEXT['UNKNOWN'] = 'Guest';
38

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = '&#1052;&#1086;&#1076;&#1091;&#1083;&#1100; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1083;&#1077;&#1085;&#1090;&#1099; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1077;&#1081;';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = '&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1085;&#1086;&#1081; &#1083;&#1077;&#1085;&#1090;&#1099;';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = '&#1063;&#1080;&#1090;&#1072;&#1090;&#1100; &#1076;&#1072;&#1083;&#1100;&#1096;&#1077;';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
28
$MOD_NEWS['TEXT_ON'] = 'on';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = '&#1055;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1077; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;';
30
$MOD_NEWS['TEXT_AT'] = 'at';
31
$MOD_NEWS['TEXT_BACK'] = '&#1053;&#1072;&#1079;&#1072;&#1076;';
32
$MOD_NEWS['TEXT_COMMENTS'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1072;&#1088;&#1080;&#1080;';
33
$MOD_NEWS['TEXT_COMMENT'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = '&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
35
$MOD_NEWS['TEXT_BY'] = 'By';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
38
$TEXT['UNKNOWN'] = 'Guest';
39

  
39 40
?>
branches/2.8.x/wb/modules/news/languages/FR.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Module Description
20
$module_description = 'Ce type de page est con?u &agrave faire une page de nouvelles.';
21

  
22
//Variables for the  backend
23
$MOD_NEWS['SETTINGS'] = 'Configurations Nouvelles';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'En savoir plus';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Post&eacute; par';
28
$MOD_NEWS['TEXT_ON'] = '&agrave;';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Derni&egrave;re modification';
30
$MOD_NEWS['TEXT_AT'] = '&agrave;';
31
$MOD_NEWS['TEXT_BACK'] = 'Retour';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaires';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Commentaire';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Ajouter un commentaire';
35
$MOD_NEWS['TEXT_BY'] = 'Par';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page non trouv&eacute;e';
37
$TEXT['UNKNOWN'] = 'Invit&eacute;';
38

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Module Description
20
$module_description = 'Ce type de page est con?u &agrave faire une page de nouvelles.';
21

  
22
//Variables for the  backend
23
$MOD_NEWS['SETTINGS'] = 'Configurations Nouvelles';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'En savoir plus';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Post&eacute; par';
28
$MOD_NEWS['TEXT_ON'] = '&agrave;';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Derni&egrave;re modification';
30
$MOD_NEWS['TEXT_AT'] = '&agrave;';
31
$MOD_NEWS['TEXT_BACK'] = 'Retour';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaires';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Commentaire';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Ajouter un commentaire';
35
$MOD_NEWS['TEXT_BY'] = 'Par';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page non trouv&eacute;e';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
38
$TEXT['UNKNOWN'] = 'Invit&eacute;';
39

  
39 40
?>
branches/2.8.x/wb/modules/news/languages/SE.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Den h&auml;r sidtypen &auml;r designad f&ouml;r att skapa en nyhetssida.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'Inst&auml;llningar';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'L&auml;s mer';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Postat av';
28
$MOD_NEWS['TEXT_ON'] = 'den';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Senaste &auml;ndring';
30
$MOD_NEWS['TEXT_AT'] = 'kl.';
31
$MOD_NEWS['TEXT_BACK'] = 'Tillbaka';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
33
$MOD_NEWS['TEXT_COMMENT'] = 'kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentera';
35
$MOD_NEWS['TEXT_BY'] = 'Av';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Sidan kunde inte hittas';
37
$TEXT['UNKNOWN'] = 'Guest';
38

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Den h&auml;r sidtypen &auml;r designad f&ouml;r att skapa en nyhetssida.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'Inst&auml;llningar';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'L&auml;s mer';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Postat av';
28
$MOD_NEWS['TEXT_ON'] = 'den';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Senaste &auml;ndring';
30
$MOD_NEWS['TEXT_AT'] = 'kl.';
31
$MOD_NEWS['TEXT_BACK'] = 'Tillbaka';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
33
$MOD_NEWS['TEXT_COMMENT'] = 'kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentera';
35
$MOD_NEWS['TEXT_BY'] = 'Av';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Sidan kunde inte hittas';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
38
$TEXT['UNKNOWN'] = 'Guest';
39

  
39 40
?>
branches/2.8.x/wb/modules/news/languages/DE.php
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Mit diesem Modul k&ouml;nnen sie eine News Seite ihrer Seite hinzuf&uuml;gen.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'News Einstellungen';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'Weiterlesen';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Ver&ouml;ffentlicht von';
28
$MOD_NEWS['TEXT_ON'] = 'am';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Zuletzt ge&auml;ndert am';
30
$MOD_NEWS['TEXT_AT'] = 'um';
31
$MOD_NEWS['TEXT_BACK'] = 'Zur&uuml;ck';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentare';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentar hinzuf&uuml;gen';
35
$MOD_NEWS['TEXT_BY'] = 'von';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Seite nicht gefunden';
37
$TEXT['UNKNOWN'] = 'Gast';
38

  
1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
//Modul Description
20
$module_description = 'Mit diesem Modul k&ouml;nnen sie eine News Seite ihrer Seite hinzuf&uuml;gen.';
21

  
22
//Variables for the backend
23
$MOD_NEWS['SETTINGS'] = 'News Einstellungen';
24

  
25
//Variables for the frontend
26
$MOD_NEWS['TEXT_READ_MORE'] = 'Weiterlesen';
27
$MOD_NEWS['TEXT_POSTED_BY'] = 'Ver&ouml;ffentlicht von';
28
$MOD_NEWS['TEXT_ON'] = 'am';
29
$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Zuletzt ge&auml;ndert am';
30
$MOD_NEWS['TEXT_AT'] = 'um';
31
$MOD_NEWS['TEXT_BACK'] = 'Zur&uuml;ck';
32
$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentare';
33
$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
34
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentar hinzuf&uuml;gen';
35
$MOD_NEWS['TEXT_BY'] = 'von';
36
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Seite nicht gefunden';
37
$MOD_NEWS['NO_COMMENT_FOUND'] = 'Kein Kommentar gefunden';
38

  
39
$TEXT['UNKNOWN'] = 'Gast';
40

  
39 41
?>

Also available in: Unified diff