| 582 | } |
| 583 | |
| 584 | Italian::Italian() // Italiano |
| 585 | // build the translation vector in the Translation base class |
| 586 | { |
| 587 | addPair("Formatted %s\n", L"Formattata %s\n"); // should align with unchanged |
| 588 | addPair("Unchanged %s\n", L"Immutato %s\n"); // should align with formatted |
| 589 | addPair("Directory %s\n", L"Elenco %s\n"); |
| 590 | addPair("Exclude %s\n", L"Escludere %s\n"); |
| 591 | addPair("Exclude (unmatched) %s\n", L"Escludere (senza pari) %s\n"); |
| 592 | addPair(" %s formatted %s unchanged ", L" %s ormattata %s immutato "); |
| 593 | addPair(" seconds ", L" secondo "); |
| 594 | addPair("%d min %d sec ", L"%d min %d seg "); |
| 595 | addPair("%s lines\n", L"%s linee\n"); |
| 596 | addPair("Using default options file %s\n", L"Utilizzando file delle opzioni di default %s\n"); |
| 597 | addPair("Invalid option file options:", L"Opzione non valida file delle opzioni:"); |
| 598 | addPair("Invalid command line options:", L"Opzioni della riga di comando non valido:"); |
| 599 | addPair("For help on options type 'astyle -h'", L"Per informazioni sulle opzioni di tipo 'astyle-h'"); |
| 600 | addPair("Cannot open options file", L"Impossibile aprire il file opzioni"); |
| 601 | addPair("Cannot open directory", L"Impossibile aprire la directory"); |
| 602 | addPair("Missing filename in %s\n", L"Nome del file mancante in %s\n"); |
| 603 | addPair("Recursive option with no wildcard", L"Opzione ricorsiva senza jolly"); |
| 604 | addPair("Did you intend quote the filename", L"Avete intenzione citare il nome del file"); |
| 605 | addPair("No file to process %s\n", L"Nessun file al processo %s\n"); |
| 606 | addPair("Did you intend to use --recursive", L"Hai intenzione di utilizzare --recursive"); |
| 607 | addPair("Cannot process UTF-32 encoding", L"Non è possibile processo di codifica UTF-32"); |
| 608 | addPair("\nArtistic Style has terminated", L"\nArtistic Style ha terminato"); |
| 609 | } |
| 610 | |
| 611 | Japanese::Japanese() // 日本 |
| 612 | { |
nothing calls this directly
no outgoing calls
no test coverage detected