~jstys-z/helioviewer.org/timeline

« back to all changes in this revision

Viewing changes to lib/shadowbox-2.0/src/lang/shadowbox-ar.js

  • Committer: Keith Hughitt
  • Date: 2010-02-17 22:00:59 UTC
  • mfrom: (402.1.68 hv)
  • Revision ID: keith.hughitt@nasa.gov-20100217220059-wmdq7kgokj4seryx
Merged with Keith's branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * The Arabic (العربية) language file for Shadowbox.
3
 
 *
4
 
 * This file is part of Shadowbox.
5
 
 *
6
 
 * Shadowbox is an online media viewer application that supports all of the
7
 
 * web's most popular media publishing formats. Shadowbox is written entirely
8
 
 * in JavaScript and CSS and is highly customizable. Using Shadowbox, website
9
 
 * authors can showcase a wide assortment of media in all major browsers without
10
 
 * navigating users away from the linking page.
11
 
 *
12
 
 * Shadowbox is released under version 3.0 of the Creative Commons Attribution-
13
 
 * Noncommercial-Share Alike license. This means that it is absolutely free
14
 
 * for personal, noncommercial use provided that you 1) make attribution to the
15
 
 * author and 2) release any derivative work under the same or a similar
16
 
 * license.
17
 
 *
18
 
 * If you wish to use Shadowbox for commercial purposes, licensing information
19
 
 * can be found at http://mjijackson.com/shadowbox/.
20
 
 *
21
 
 * @author      Michael J. I. Jackson <mjijackson@gmail.com>
22
 
 * @copyright   2007-2008 Michael J. I. Jackson
23
 
 * @license     http://creativecommons.org/licenses/by-nc-sa/3.0/
24
 
 * @version     SVN: $Id: shadowbox-ar.js 100 2008-06-23 02:31:30Z mjijackson $
25
 
 */
26
 
 
27
 
if(typeof Shadowbox == 'undefined'){
28
 
    throw 'Unable to load Shadowbox language file, base library not found.';
29
 
}
30
 
 
31
 
/**
32
 
 * An object containing all textual messages to be used in Shadowbox. These are
33
 
 * provided so they may be translated into different languages. Alternative
34
 
 * translations may be found in js/lang/shadowbox-*.js where * is an abbreviation
35
 
 * of the language name (see
36
 
 * http://www.gnu.org/software/gettext/manual/gettext.html#Language-Codes).
37
 
 *
38
 
 * @var     {Object}    LANG
39
 
 * @public
40
 
 * @static
41
 
 */
42
 
Shadowbox.LANG = {
43
 
 
44
 
    code:       'ar',
45
 
 
46
 
    of:         'من',
47
 
 
48
 
    loading:    'جار التحميل',
49
 
 
50
 
    cancel:     'خروج',
51
 
 
52
 
    next:       'التالى',
53
 
 
54
 
    previous:   'السابق',
55
 
 
56
 
    play:       'بدء',
57
 
 
58
 
    pause:      'ايقاف',
59
 
 
60
 
    close:      'اغلاق',
61
 
 
62
 
    errors:     {
63
 
        single: 'يجب ان تقوم بتنصيب اضافة المتصفح <a href="{0}">{1}</a> لعرض هذا المحتوى.',
64
 
        shared: 'يجب ان تقوم بتنصيب الاضافتين  <a href="{0}">{1}</a> و <a href="{2}">{3}</a>للمتصفح  لعرض هذا المحتوى.',
65
 
        either: 'يجب ان قوم بتنصيب اما الاضافة التاليى <a href="{0}">{1}</a> او <a href="{2}">{3}</a> للمتصفح  لعرض هذا المحتوى.'
66
 
    }
67
 
 
68
 
};