|
21 | 21 | $.ig.DataSourceLocale = $.ig.DataSourceLocale || {}; |
22 | 22 |
|
23 | 23 | $.ig.locale.it.DataSourceLocale = { |
24 | | - invalidDataSource: "The supplied data source is invalid. It happens to be a scalar.", |
25 | | - unknownDataSource: "Cannot determine the data source type. Please specify if it is JSON or XML data.", |
26 | | - errorParsingArrays: "There was an error parsing the array data and applying the defined data schema: ", |
27 | | - errorParsingJson: "There was an error parsing the JSON data and applying the defined data schema: ", |
28 | | - errorParsingXml: "There was an error parsing the XML data and applying the defined data schema: ", |
29 | | - errorParsingHtmlTable: "There was an error extracting the data from the HTML Table and applying the schema : ", |
30 | | - errorExpectedTbodyParameter: "Expected a tbody or a table as a parameter.", |
31 | | - errorTableWithIdNotFound: "The HTML Table with the following ID was not found: ", |
32 | | - errorParsingHtmlTableNoSchema: "There was an error parsing the Table DOM: ", |
33 | | - errorParsingJsonNoSchema: "There was an error parsing/evaluating the JSON string: ", |
34 | | - errorParsingXmlNoSchema: "There was an error parsing the XML string: ", |
35 | | - errorXmlSourceWithoutSchema: "The supplied data source is an xml document, but there is no defined data schema ($.IgDataSchema) ", |
36 | | - errorUnrecognizedFilterCondition: " The filter condition that was passed was not recognized: ", |
37 | | - errorRemoteRequest: "The remote request to fetch data has failed: ", |
38 | | - errorSchemaMismatch: "The input data doesn't match the schema, the following field couldn't be mapped: ", |
39 | | - errorSchemaFieldCountMismatch: "The input data doesn't match the schema in terms of number of fields. ", |
40 | | - errorUnrecognizedResponseType: "The response type was either not set correctly, or it was not possible to detect it automatically. Please set settings.responseDataType and/or settings.responseContentType.", |
41 | | - hierarchicalTablesNotSupported: "Tables are not supported for HierarchicalSchema", |
42 | | - cannotBuildTemplate: "The jQuery template could not be built. There are no records present in the data source, and no columns defined.", |
43 | | - unrecognizedCondition: "Unrecognized filtering condition in the following expression: ", |
44 | | - fieldMismatch: "The following expression contains an invalid field or filtering condition: ", |
45 | | - noSortingFields: "There are no fields specified. You need to specify at least one field to sort by, when calling sort().", |
46 | | - filteringNoSchema: "There is no schema / fields specified. You need to specify a schema with field definitions and types to be able to filter the data source.", |
47 | | - noSaveChanges: "Saving changes was not successful. Server did not return Success object or returned Success:false.", |
48 | | - errorUnexpectedCustomFilterFunction: "An unexpected value was provided for a custom filtering function. A function or string is expected." |
| 24 | + invalidDataSource: "L'origine dati fornita non è valida. Risulta essere casualmente uno scalare.", |
| 25 | + unknownDataSource: "Impossibile determinare il tipo di origine dati. Specificare se si tratta di dati JSON o XML.", |
| 26 | + errorParsingArrays: "Si è verificato un errore durante l'analisi dei dati dell'array e l'applicazione dello schema dati definito: ", |
| 27 | + errorParsingJson: "Si è verificato un errore durante l'analisi dei dati JSON e l'applicazione dello schema dati definito: ", |
| 28 | + errorParsingXml: "Si è verificato un errore durante l'analisi dei dati XML e l'applicazione dello schema dati definito: ", |
| 29 | + errorParsingHtmlTable: "Si è verificato un errore durante l'estrazione dei dati dalla tabella HTML e l'applicazione dello schema: ", |
| 30 | + errorExpectedTbodyParameter: "Previsto un tbody o una tabella come parametro.", |
| 31 | + errorTableWithIdNotFound: "Impossibile trovare la tabella HTML con il seguente ID: ", |
| 32 | + errorParsingHtmlTableNoSchema: "Si è verificato un errore durante l'analisi del DOM tabella: ", |
| 33 | + errorParsingJsonNoSchema: "Errore durante l'analisi / valutazione della stringa JSON: ", |
| 34 | + errorParsingXmlNoSchema: "Si è verificato un errore durante l'analisi della stringa XML: ", |
| 35 | + errorXmlSourceWithoutSchema: "L'origine dati fornita è un documento XML, ma non esiste uno schema dati definito ($.IgDataSchema) ", |
| 36 | + errorUnrecognizedFilterCondition: " La condizione di filtro passata non è stata riconosciuta: ", |
| 37 | + errorRemoteRequest: "La richiesta remota di recupero dei dati non è riuscita: ", |
| 38 | + errorSchemaMismatch: "I dati di input non corrispondono allo schema, il seguente campo non può essere mappato: ", |
| 39 | + errorSchemaFieldCountMismatch: "I dati di input non corrispondono allo schema in termini di numero di campi. ", |
| 40 | + errorUnrecognizedResponseType: "Il tipo di risposta non è stato impostato correttamente o non è stato possibile rilevarlo automaticamente. Impostare settings.responseDataType e / o settings.responseContentType.", |
| 41 | + hierarchicalTablesNotSupported: "Le tabelle non sono supportate per HierarchicalSchema", |
| 42 | + cannotBuildTemplate: "Impossibile creare il modello jQuery. Non sono presenti record nell'origine dati e non sono state definite colonne.", |
| 43 | + unrecognizedCondition: "Condizione di filtro non riconosciuta nell'espressione seguente: ", |
| 44 | + fieldMismatch: "L'espressione seguente contiene un campo o una condizione di filtro non validi: ", |
| 45 | + noSortingFields: "Non ci sono campi specificati. È necessario specificare almeno un campo in base al quale ordinare, quando si chiama sort().", |
| 46 | + filteringNoSchema: "Non sono stati specificati schemi / campi. È necessario specificare uno schema con definizioni e tipi di campi per poter filtrare l'origine dati.", |
| 47 | + noSaveChanges: "Salvataggio delle modifiche non riuscito. Il server non ha restituito l'oggetto Success o ha restituito Success: false.", |
| 48 | + errorUnexpectedCustomFilterFunction: "È stato fornito un valore imprevisto per una funzione di filtro personalizzata. È prevista una funzione o una stringa." |
49 | 49 | }; |
50 | 50 |
|
51 | 51 | $.ig.DataSourceLocale.locale = $.ig.DataSourceLocale.locale || $.ig.locale.it.DataSourceLocale; |
|
0 commit comments