home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Joker 2000 August
/
JOKER0800B.mdf
/
GOODIES
/
ACROBAT
/
READER
/
PLUG_INS
/
ACROFORM
/
AFSTRDEU.JS
< prev
next >
Wrap
Text File
|
1999-03-09
|
5KB
|
153 lines
/*
==========================================================================
Module: AFStrDEU.js
==========================================================================
JavaScript language dependent strings.
==========================================================================
The Software, including this file, is subject to the End User License
Agreement.
Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
==========================================================================
*/
/* ==== Strings ==== */
/* All of our user strings are defined here. Use Shift-JIS encoding for
** double byte platforms. These strings need to be translated for each language. */
if (app.language == "DEU") {
/* Each string is presented twice: first, in Macintosh platform encoding,
** and then in Windows encoding: */
if (app.platform == "MAC") {
IDS_LANGUAGE = "DEU";
IDS_GREATER_THAN = "Ungƒltiger Wert: muº grܺer oder gleich %s.";
IDS_GT_AND_LT = "Ungƒltiger Wert: muº grܺer oder gleich %s sein und kleiner oder gleich %s.";
IDS_LESS_THAN = "Ungƒltiger Wert: muº kleiner oder gleich sein wie %s.";
IDS_INVALID_MONTH = "** Ungƒltig **";
IDS_INVALID_VALUE = "Der eingegebene Wert entspricht nicht dem Feldformat.";
IDS_AM = "am";
IDS_PM = "pm";
/* This string contains month info in the following format:
** month name or abbreviation (left bracket) month number (right bracket)
** Note that the first string with the given number will be returned by
** AFGetMonthString (look in AForm.js)
** Also note that the months and abbreviations should be in order of most
** to least definitive in case an abbreviation matches part of another
** month or abbreviation */
IDS_MONTH_INFO = "Januar[1]" +
"Februar[2]" +
"Mèrz[3]" +
"April[4]" +
"Mai[5]" +
"Juni[6]" +
"Juli[7]" +
"August[8]" +
"September[9]" +
"Oktober[10]" +
"November[11]" +
"Dezember[12]" +
"Sept[9]" +
"Jan[1]" +
"Feb[2]" +
"Mèrz[3]" +
"Apr[4]" +
"Juni[6]" +
"Juli[7]" +
"Aug[8]" +
"Sep[9]" +
"Okt[10]" +
"Nov[11]" +
"Dez[12]" +
"January[1]" +
"February[2]" +
"March[3]" +
"April[4]" +
"May[5]" +
"June[6]" +
"July[7]" +
"August[8]" +
"September[9]" +
"October[10]" +
"November[11]" +
"December[12]" +
"Sept[9]" +
"Jan[1]" +
"Feb[2]" +
"Mar[3]" +
"Apr[4]" +
"Jun[6]" +
"Jul[7]" +
"Aug[8]" +
"Sep[9]" +
"Oct[10]" +
"Nov[11]" +
"Dec[12]";
} else {
IDS_LANGUAGE = "DEU";
IDS_GREATER_THAN = "Ungⁿltiger Wert: mu▀ gr÷▀er oder gleich %s.";
IDS_GT_AND_LT = "Ungⁿltiger Wert: mu▀ gr÷▀er oder gleich %s sein und kleiner oder gleich %s.";
IDS_LESS_THAN = "Ungⁿltiger Wert: mu▀ kleiner oder gleich sein wie %s.";
IDS_INVALID_MONTH = "** Ungⁿltig **";
IDS_INVALID_VALUE = "Der eingegebene Wert entspricht nicht dem Feldformat.";
IDS_AM = "am";
IDS_PM = "pm";
/* This string contains month info in the following format:
** month name or abbreviation (left bracket) month number (right bracket)
** Note that the first string with the given number will be returned by
** AFGetMonthString (look in AForm.js)
** Also note that the months and abbreviations should be in order of most
** to least definitive in case an abbreviation matches part of another
** month or abbreviation */
IDS_MONTH_INFO = "Januar[1]" +
"Februar[2]" +
"MΣrz[3]" +
"April[4]" +
"Mai[5]" +
"Juni[6]" +
"Juli[7]" +
"August[8]" +
"September[9]" +
"Oktober[10]" +
"November[11]" +
"Dezember[12]" +
"Sept[9]" +
"Jan[1]" +
"Feb[2]" +
"MΣrz[3]" +
"Apr[4]" +
"Juni[6]" +
"Juli[7]" +
"Aug[8]" +
"Sep[9]" +
"Okt[10]" +
"Nov[11]" +
"Dez[12]" +
"January[1]" +
"February[2]" +
"March[3]" +
"April[4]" +
"May[5]" +
"June[6]" +
"July[7]" +
"August[8]" +
"September[9]" +
"October[10]" +
"November[11]" +
"December[12]" +
"Sept[9]" +
"Jan[1]" +
"Feb[2]" +
"Mar[3]" +
"Apr[4]" +
"Jun[6]" +
"Jul[7]" +
"Aug[8]" +
"Sep[9]" +
"Oct[10]" +
"Nov[11]" +
"Dec[12]";
}
}