1<?php
2/**
3 * english language file for flexpaper plugin
4 *
5 * @author Ethen Guo <Ethen.Guo@Gmail.com>
6 */
7
8// keys need to match the config setting name
9// $lang['fixme'] = 'FIXME';
10
11$lang['SwfFile'] = '(String) The flash document FlexPaper should open';
12$lang['JSONFile'] = '(String) The json document FlexPaper should open. Mark the page number with {page} if you are loading FlexPaper in split mode (e.g. Paper.pdf_{page}.js). This only applies to FlexPaper with AdaptiveUI enabled.';
13$lang['IMGFiles'] = '(String) The pages as images FlexPaper should open. Mark page number with {page} (e.g. Paper.pdf_{page}.png}). This only applies to FlexPaper with AdaptiveUI enabled.';
14$lang['Scale'] = '<b>(Number)</b> The initial zoom factor that should be used. Should be a number above 0 (1=100%)';
15$lang['ZoomTransition'] = '<b>(String)</b> The zoom transition that should be used when zooming in FlexPaper. It uses the same Transition modes as the Tweener. The default value is easeOut. Some examples: easenone, easeout, linear, easeoutquad';
16$lang['ZoomTime'] = '<b>(Number)</b> The time it should take for the zoom to reach the new zoom factor. Should be 0 or greater.';
17$lang['ZoomInterval'] = '<b>(Number)</b> The interval which the zoom slider should be using. Basically how big the "step" should be between each zoom factor. The default value is 0.1. Should be a positive number.';
18$lang['FitPageOnLoad'] = '(Boolean) Fits the page on initial load. Same effect as using the fit-page button in the toolbar.';
19$lang['FitWidthOnLoad'] = '(Boolean) Fits the width on initial load. Same effect as using the fit-width button in the toolbar.';
20$lang['FullScreenAsMaxWindow'] = '(Boolean) With this set to true, clicking on fullscreen will open a new browser window with FlexPaper maximized instead of using true fullscreen. This is a preferred setting when using FlexPaper as flash standalone as the security limitations of the Flash player disables (for security reasons) most of the input controls in true fullscreen.';
21$lang['ProgressiveLoading'] = '(Boolean) Will load and display the document progressively when set to true as opposed to downloading the complete document before displaying the pages. Documents need to be converted to at least Flash version 9 for this to work (-T 9 flag using PDF2SWF). Please observe that this parameter has no effect in FlexPaper Zine. Please use split page loading for large documents in FlexPaper Zine.';
22$lang['MaxZoomSize'] = '<b>(Number)</b> Sets the maximum allowed zoom level';
23$lang['MinZoomSize'] = '<b>(Number)</b> Sets the minimum allowed zoom level';
24$lang['SearchMatchAll'] = '<b>(Boolean)</b> When set to true, the viewer highlights all matches when performing searches in a document.';
25$lang['InitViewMode'] = '(String) Sets the start-up view mode. For example "Portrait" or "TwoPage".';
26$lang['PrintPaperAsBitmap'] = '(Boolean) When set to true, the viewer will print the document as a bitmap as opposed to vectorized';
27$lang['StartAtPage'] = '(Number) Instructs the viewer to start at a specific page';
28$lang['ViewModeToolsVisible'] = '(Boolean) Shows or hides view modes from the tool bar';
29$lang['ZoomToolsVisible'] = '(Boolean) Shows or hides zoom tools from the tool bar';
30$lang['NavToolsVisible'] = '(Boolean) Shows or hides nav tools from the tool bar';
31$lang['CursorToolsVisible'] = '(Boolean) Shows or hides cursor tools from the tool bar';
32$lang['SearchToolsVisible'] = '(Boolean) Shows or hides search tools from the tool bar';
33$lang['localeChain'] = '(String) Sets the locale (language) to use. The following languages are currently supported:<br/>
34en_US (English)<br/>
35fr_FR (French)<br/>
36zh_CN (Chinese, Simple)<br/>
37es_ES (Spanish)<br/>
38pt_BR (Brazilian Portugese)<br/>
39ru_RU (Russian)<br/>
40fi_FN (Finnish)<br/>
41de_DE (German)<br/>
42nl_NL (Netherlands)<br/>
43tr_TR (Turkish)<br/>
44se_SE (Swedish)<br/>
45pt_PT (Portugese)<br/>
46el_EL (Greek)<br/>
47dn_DN (Danish)<br/>
48cz_CS (Czech)<br/>
49it_IT (Italian)<br/>
50pl_PL (Polish)<br/>
51pv_FN (Finnish)<br/>
52hu_HU (Hungarian)';
53
54//Setup VIM: ex: et ts=4 :
55