updated internationalization system again
This commit is contained in:
parent
a1a950a09f
commit
1b21302eb3
43 changed files with 6716 additions and 2283 deletions
|
|
@ -1,45 +1,103 @@
|
|||
package WebGUI::i18n::English::FileManager;
|
||||
|
||||
our $I18N = {
|
||||
1 => q|File Manager|,
|
||||
'1' => {
|
||||
message => q|File Manager|,
|
||||
lastUpdated => 1038028463
|
||||
},
|
||||
|
||||
3 => q|Proceed to add file?|,
|
||||
'3' => {
|
||||
message => q|Proceed to add file?|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
5 => q|File Title|,
|
||||
'5' => {
|
||||
message => q|File Title|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
6 => q|File|,
|
||||
'6' => {
|
||||
message => q|File|,
|
||||
lastUpdated => 1038882929
|
||||
},
|
||||
|
||||
7 => q|Group to Download|,
|
||||
'7' => {
|
||||
message => q|Group to Download|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
8 => q|Brief Synopsis|,
|
||||
'8' => {
|
||||
message => q|Brief Synopsis|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
9 => q|Edit File Manager|,
|
||||
'9' => {
|
||||
message => q|Edit File Manager|,
|
||||
lastUpdated => 1038028499
|
||||
},
|
||||
|
||||
10 => q|Edit File|,
|
||||
'10' => {
|
||||
message => q|Edit File|,
|
||||
lastUpdated => 1038882889
|
||||
},
|
||||
|
||||
11 => q|Add a new file.|,
|
||||
'11' => {
|
||||
message => q|Add a new file.|,
|
||||
lastUpdated => 1038882956
|
||||
},
|
||||
|
||||
12 => q|Are you certain that you wish to delete this file?|,
|
||||
'12' => {
|
||||
message => q|Are you certain that you wish to delete this file?|,
|
||||
lastUpdated => 1038882975
|
||||
},
|
||||
|
||||
14 => q|File|,
|
||||
'14' => {
|
||||
message => q|File|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
15 => q|Description|,
|
||||
'15' => {
|
||||
message => q|Description|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
16 => q|Date Uploaded|,
|
||||
'16' => {
|
||||
message => q|Date Uploaded|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
17 => q|Alternate Version #1|,
|
||||
'17' => {
|
||||
message => q|Alternate Version #1|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
18 => q|Alternate Version #2|,
|
||||
'18' => {
|
||||
message => q|Alternate Version #2|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
19 => q|You have no files available.|,
|
||||
'19' => {
|
||||
message => q|You have no files available.|,
|
||||
lastUpdated => 1038882995
|
||||
},
|
||||
|
||||
20 => q|Paginate After|,
|
||||
'20' => {
|
||||
message => q|Paginate After|,
|
||||
lastUpdated => 1031514049
|
||||
},
|
||||
|
||||
74 => q|Add a new file.|,
|
||||
'74' => {
|
||||
message => q|Add a new file.|,
|
||||
lastUpdated => 1038262375
|
||||
},
|
||||
|
||||
61 => q|File Manager, Add/Edit|,
|
||||
'61' => {
|
||||
message => q|File Manager, Add/Edit|,
|
||||
lastUpdated => 1038887335
|
||||
},
|
||||
|
||||
71 => q|The File Manager is designed to help you manage file distribution on your site. It allows you to specify who may view/download files from your site.
|
||||
'71' => {
|
||||
message => q|The File Manager is designed to help you manage file distribution on your site. It allows you to specify who may view/download files from your site.
|
||||
<p>
|
||||
|
||||
<b>Template</b><br/>
|
||||
|
|
@ -55,10 +113,16 @@ If you wish to start adding files to download right away, leave this checked.
|
|||
<p>
|
||||
|
||||
|,
|
||||
lastUpdated => 1038887335
|
||||
},
|
||||
|
||||
72 => q|File, Add/Edit|,
|
||||
'72' => {
|
||||
message => q|File, Add/Edit|,
|
||||
lastUpdated => 1038883174
|
||||
},
|
||||
|
||||
73 => q|<b>File Title</b><br>
|
||||
'73' => {
|
||||
message => q|<b>File Title</b><br>
|
||||
The title that will be displayed for this file. If left blank the filename will be used.
|
||||
<p>
|
||||
|
||||
|
|
@ -86,10 +150,16 @@ Choose the group that may download this file.
|
|||
If you'd like to add another file after this one, then select "add a new file" otherwise select "go back to the page".
|
||||
<p>
|
||||
|,
|
||||
lastUpdated => 1038883174
|
||||
},
|
||||
|
||||
75 => q|File Manager Template|,
|
||||
'75' => {
|
||||
message => q|File Manager Template|,
|
||||
lastUpdated => 1038853712
|
||||
},
|
||||
|
||||
76 => q|This is the list of template variables available in File Manager templates.
|
||||
'76' => {
|
||||
message => q|This is the list of template variables available in File Manager templates.
|
||||
<p/>
|
||||
|
||||
<b>titleColumn.url</b><br/>
|
||||
|
|
@ -230,6 +300,8 @@ A conditional indicating whether there are any files for this user to view.
|
|||
<p/>
|
||||
|
||||
|,
|
||||
lastUpdated => 1082371148
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue