home *** CD-ROM | disk | FTP | other *** search
- {------------------------------------------------------------------------------}
- { TExportX Components Localization Unit - Italian Language }
- {------------------------------------------------------------------------------}
- { Before Translating this file yourself, please ensure that there is not a }
- { translation already available in your language on our Web Site. }
- { http://www.igather.com/components }
- { }
- { To localize all Y-Tech Export Components, just change these String Constants }
- { to phrases in your own language. Please make sure you don't change the name }
- { of constants, or change them in any other way - you must leave all %s, etc...}
- { markers in the string. Only change the actual words itself. If you do }
- { anything else, TExportListView might not compile or run properly. }
- { }
- { You have 2 options: 1) (D3+ Only) you can change the resourcestrings after }
- { the unit has been compiled or 2) you can change the strings right in here. }
- { Note: #2 is the only option for D2 Users. }
- { }
- { Please send any decent translations you have made to ycomp@hotpop.com so we }
- { can include them on our web site for the benefit of other people that speak }
- { your language. }
- {------------------------------------------------------------------------------}
-
- unit EC_Strings;
-
- interface
-
- {$I CompConditionals.inc}
-
- {$IFDEF Delphi3Up}
- ResourceString
- {$ELSE}
- const
- {$ENDIF}
- // These are the names that will appear in the Choose Dialog, you'll want to translate these
- // for sure.
- ccHTML = 'HTML';
- ccMicrosoftWord = 'Microsoft Word';
- ccMicrosoftExcel = 'Microsoft Excel';
- ccText = 'Testo';
- ccRichText = 'Rich Text (RTF)';
- ccCSVText = 'Testo Di Comma-Delimited (CSV)';
- ccTabText = 'Testo Di Tab-Delimited';
- ccDif = 'Data Interchange Formato (DIF)';
- ccSYLK = 'SYLK Formato';
- ccClipboard = 'Clipboard';
-
- cFilesFilter = '%s archivi (*.%s)|*.%s|Tutti gli Archivi (*.*)|*.*';
- cExportTitle = 'Esportazione all'' archivio di %s';
-
- // "Choose" Dialog Strings
- cChooseDialogCaption = 'Articoli Dell'' Esportazione %d';
- cChooseDialogCaption2 = 'Articoli Dell'' Esportazione';
- cChooseDialogStatusMsg = 'articoli di %d esportati nei secondi di %.2f.';
- cChooseOkCaption = '&Ok';
- cChooseCancelCaption = '&Annullano';
- cChooseInstructions = 'Scegliere prego un formato dell'' esportazione';
- cChooseScreenCaption = '&Vista sullo schermo';
- cChooseFileCaption = 'Esportazione a &File';
-
- // Misc.
- cExcelRightFooter = 'Pagina &P di &N'; // Don't touch &P or &N! Only change word for 'page' and 'of'
- cNumberRowsCaption = 'Articolo'; // Row Numbering Column Header
-
- // Progress Constatns
- cPrintingCaption = 'Stampa...';
- cExportingCaption = 'Esportazione...';
-
- // Misc. Messages
- cCreatedMsg = 'Creato:';
- cClipSuccessfulMsg = 'Esportato con successo al clipboard';
- cExcelPleaseWaitMsg = 'Prego Attesa... Excel esportazione in progresso.';
-
- // Error Messages
- cGenericExportError = 'Esportazione Venuto a mancare.';
- cTextFileError = 'Esportazione Venuto a mancare. Prova ancora con differente un nome di archivio. '+
- 'Accertarsi prego che ci sia abbastanza stanza sull'' azionamento della destinazione '+
- 'e che l'' azionamento dell'' obiettivo non ?write-protected.' + #13#10#13#10 +
- 'Utenti Della Rete: Please ensure that the network drive or folder you are trying to ' +
- 'write to is connected and accessible.';
- cPrintError = 'Non ha potuto completare con successo il funzionamento di stampa.';
- cDefShellViewError = 'L'' errore ha accaduto mentre provava ad osservare i dati esportati al %s formatta.' + #13#10#13#10 +
- 'Se questo problema persist, potete desiderare studiare la possibilit?di reinstallare '+
- 'l'' applicazione del visore di %s.';
-
- cNoDataError = 'Non ci sono dati da esportare.';
- cNoneSelectedError = 'Dovete selezionare almeno un articolo per esportare.';
- cNoColumnsError = #13#10#13#10 + 'Accertare prego le vostre colonne sono visibile ed hanno dati.';
-
- // OLE Error Messages - OLE is not used anymore, but this is left in, just in case someone is using v2.70 or earlier
- cGenericOLEError1 = 'Cannot communicate with ';
- cGenericOLEError2 = '.' + #13#10 + 'Please try again and if that still fails then '+
- 'restart the computer, it might work then.';
-
-
- const
- // Error Messages that only the Developer should see, no need to translate these.
- cNoComponentError = 'You must assign a %s before attempting to Export/Print.';
- cNotActiveError = 'Assigned DataSet not Active. Please set the Active property to True before ' +
- 'attempting to Export/Print.';
- cNoDataSource = '%s has no assigned DataSource';
- cNoDataSet = '%s has no assigned DataSet';
-
- implementation
-
- end.
-