[geeklog-cvs] Geeklog-1.x/plugins/links/language hebrew_utf-8.php, 1.3, 1.4

Dirk Haun dhaun at qs1489.pair.com
Mon Sep 22 14:03:24 EDT 2008


Update of /cvsroot/geeklog/Geeklog-1.x/plugins/links/language
In directory qs1489.pair.com:/tmp/cvs-serv27755/plugins/links/language

Modified Files:
hebrew_utf-8.php
Log Message:
Updated Hebrew language files, provided by LWC


Index: hebrew_utf-8.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/plugins/links/language/hebrew_utf-8.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** hebrew_utf-8.php 17 Aug 2008 16:11:24 -0000 1.3
--- hebrew_utf-8.php 22 Sep 2008 18:03:21 -0000 1.4
***************
*** 25,28 ****
--- 25,45 ----
#
###############################################################################
+ # $Id$
+
+ /**
+ * This is the english language page for the Geeklog links Plug-in!
+ *
+ * @package Links
+ * @subpackage Language
+ * @filesource
+ * @version 2.0
+ * @since GL 1.4.0
+ * @copyright Copyright © 2005-2007
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @author Trinity Bays <trinity93 AT gmail DOT com>
+ * @author Tony Bibbs <tony AT tonybibbs DOT com>
+ * @author Tom Willett <twillett AT users DOT sourceforge DOT net>
+ *
+ */

global $LANG32;
***************
*** 30,38 ****
###############################################################################
# Array Format:
! # $LANGXX[YY]: $LANG - variable name
! # XX - file id number
! # YY - phrase id number
###############################################################################

$LANG_LINKS = array(
10 => 'הגשות',
--- 47,60 ----
###############################################################################
# Array Format:
! # $LANGXX[YY]: $LANG - variable name
! # XX - file id number
! # YY - phrase id number
###############################################################################

+ /**
+ * the link plugin's lang array
+ *
+ * @global array $LANG_LINKS
+ */
$LANG_LINKS = array(
10 => 'הגשות',
***************
*** 52,61 ****
125 => 'קטגוריות',
126 => 'אתם כאן:',
! 'root' => 'ראשי'
);

###############################################################################
# for stats
!
$LANG_LINKS_STATS = array(
'links' => 'קישורים (לחיצות) במערכת',
--- 74,87 ----
125 => 'קטגוריות',
126 => 'אתם כאן:',
! 'root' => 'ראשי' // title used for top level category
);

###############################################################################
# for stats
! /**
! * the link plugin's lang stats array
! *
! * @global array $LANG_LINKS_STATS
! */
$LANG_LINKS_STATS = array(
'links' => 'קישורים (לחיצות) במערכת',
***************
*** 68,83 ****
###############################################################################
# for the search
!
$LANG_LINKS_SEARCH = array(
! 'results' => 'תוצאות קישורים',
! 'title' => 'כותרת',
! 'date' => 'תאריך הוספה',
! 'author' => 'הוגש על ידי',
! 'hits' => 'לחיצות'
);

###############################################################################
# for the submission form
!
$LANG_LINKS_SUBMIT = array(
1 => 'הוספת קישור',
--- 94,117 ----
###############################################################################
# for the search
! /**
! * the link plugin's lang search array
! *
! * @global array $LANG_LINKS_SEARCH
! */
$LANG_LINKS_SEARCH = array(
! 'results' => 'תוצאות קישורים',
! 'title' => 'כותרת',
! 'date' => 'תאריך הוספה',
! 'author' => 'הוגש על ידי',
! 'hits' => 'לחיצות'
);

###############################################################################
# for the submission form
! /**
! * the link plugin's lang submit form array
! *
! * @global array $LANG_LINKS_SUBMIT
! */
$LANG_LINKS_SUBMIT = array(
1 => 'הוספת קישור',
***************
*** 111,115 ****
$PLG_links_MESSAGE15 = 'אין לכם מספיק הרשאות למחוק קטגוריה זו.';
$PLG_links_MESSAGE16 = 'אין כזו קטגוריה.';
! $PLG_links_MESSAGE17 = 'This category id is already in use.';

// Messages for the plugin upgrade
--- 145,149 ----
$PLG_links_MESSAGE15 = 'אין לכם מספיק הרשאות למחוק קטגוריה זו.';
$PLG_links_MESSAGE16 = 'אין כזו קטגוריה.';
! $PLG_links_MESSAGE17 = 'קוד זיהוי קטגוריה זה כבר נמצא בשימוש.';

// Messages for the plugin upgrade
***************
*** 118,123 ****

###############################################################################
! # admin/plugins/links/index.php
!
$LANG_LINKS_ADMIN = array(
1 => 'עריכת קישורים',
--- 152,161 ----

###############################################################################
! # admin/link.php
! /**
! * the link plugin's lang admin array
! *
! * @global array $LANG_LINKS_ADMIN
! */
$LANG_LINKS_ADMIN = array(
1 => 'עריכת קישורים',
***************
*** 171,175 ****
);

-
$LANG_LINKS_STATUS = array(
100 => 'המשך',
--- 209,212 ----
***************
*** 252,259 ****
$LANG_configselects['links'] = array(
0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => true, 'False' => false),
9 => array('Forward to Linked Site' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
);

! ?>
\ No newline at end of file
--- 289,296 ----
$LANG_configselects['links'] = array(
0 => array('True' => 1, 'False' => 0),
! 1 => array('True' => TRUE, 'False' => FALSE),
9 => array('Forward to Linked Site' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
);

! ?>




More information about the geeklog-cvs mailing list