60 lines
1.9 KiB
Perl
60 lines
1.9 KiB
Perl
package WebGUI::i18n::English::Asset_Snippet;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
|
|
'cache timeout' => {
|
|
message => q|Cache Timeout|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'cache timeout help' => {
|
|
message => q|Since all users will see this asset the same way, we can cache it for long periods of time to increase performance. How long should we cache it?<br /> <br /><b>UI Level: 8</b>|,
|
|
lastUpdated => 0
|
|
},
|
|
|
|
'assetName' => {
|
|
message => q|Snippet|,
|
|
lastUpdated => 1128830080,
|
|
context => 'Default name of all snippets'
|
|
},
|
|
|
|
'process as template' => {
|
|
message => q|Process as template?|,
|
|
lastUpdated => 1104630516,
|
|
},
|
|
|
|
'mimeType' => {
|
|
message => q|MIME Type|,
|
|
lastUpdated => 1104630516,
|
|
},
|
|
|
|
|
|
'snippet description' => {
|
|
message => q|This is the snippet. Either type it in or copy and paste it into the form field.|,
|
|
lastUpdated => 1130880361,
|
|
},
|
|
|
|
'process as template description' => {
|
|
message => q|This will run the snippet through the template engine. It will enable you to use session variables in the snippet at the cost of slower processing of the snippet.|,
|
|
lastUpdated => 1130880425,
|
|
},
|
|
|
|
'mimeType description' => {
|
|
message => q|Allows you to specify the MIME type of this asset when viewed via the web; useful if you'd like to serve CSS, plain text, javascript or other text files directly from the WebGUI asset system. Defaults to <b>text/html</b>.|,
|
|
lastUpdated => 1130880372,
|
|
},
|
|
'usePacked label' => {
|
|
message => q{Use Packed},
|
|
lastUpdated => 0,
|
|
context => "Label for asset property",
|
|
},
|
|
|
|
'usePacked description' => {
|
|
message => q{Use the packed version of this snippet for faster downloading.},
|
|
lastUpdated => 0,
|
|
context => 'Description of asset property',
|
|
},
|
|
};
|
|
|
|
1;
|