~jstys-z/helioviewer.org/client5

« back to all changes in this revision

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

Restructured Helioviewer.org project layout. Custom code for both client- and server-side now resides in src/ folders, images/css in resources/. Removed legacy libraries and code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * The Polish (Polski) 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-pl.js 99 2008-05-11 16:22:43Z 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:       'pl',
45
 
 
46
 
    of:         'z',
47
 
 
48
 
    loading:    'wczytywanie',
49
 
 
50
 
    cancel:     'Anuluj',
51
 
 
52
 
    next:       'Dalej',
53
 
 
54
 
    previous:   'Wróć',
55
 
 
56
 
    play:       'Odtwarzaj',
57
 
 
58
 
    pause:      'Pauza',
59
 
 
60
 
    close:      'Zamknij',
61
 
 
62
 
    errors:     {
63
 
        single: 'Musisz zainstalować plugin <a href="{0}">{1}</a> aby zobaczyć zawartość',
64
 
        shared: 'Musisz zainstalować pluginy <a href="{0}">{1}</a> i <a href="{2}">{3}</a> aby zobaczyć zawartość ',
65
 
        either: 'Musisz zainstalować plugin <a href="{0}">{1}</a> lub <a href="{2}">{3}</a> aby zobaczyć zawartość'
66
 
    }
67
 
 
68
 
};