| 441 | } |
| 442 | |
| 443 | Dutch::Dutch() // Nederlandse |
| 444 | // build the translation vector in the Translation base class |
| 445 | { |
| 446 | addPair("Formatted %s\n", L"Geformatteerd %s\n"); // should align with unchanged |
| 447 | addPair("Unchanged %s\n", L"Onveranderd %s\n"); // should align with formatted |
| 448 | addPair("Directory %s\n", L"Directory %s\n"); |
| 449 | addPair("Exclude %s\n", L"Uitsluiten %s\n"); |
| 450 | addPair("Exclude (unmatched) %s\n", L"Uitgesloten (ongeëvenaarde) %s\n"); |
| 451 | addPair(" %s formatted %s unchanged ", L" %s geformatteerd %s onveranderd "); |
| 452 | addPair(" seconds ", L" seconden "); |
| 453 | addPair("%d min %d sec ", L"%d min %d sec "); |
| 454 | addPair("%s lines\n", L"%s lijnen\n"); |
| 455 | addPair("Using default options file %s\n", L"Met behulp van standaard opties bestand %s\n"); |
| 456 | addPair("Invalid option file options:", L"Ongeldige optie file opties:"); |
| 457 | addPair("Invalid command line options:", L"Ongeldige command line opties:"); |
| 458 | addPair("For help on options type 'astyle -h'", L"Voor hulp bij 'astyle-h' opties het type"); |
| 459 | addPair("Cannot open options file", L"Kan niet worden geopend options bestand"); |
| 460 | addPair("Cannot open directory", L"Kan niet open directory"); |
| 461 | addPair("Missing filename in %s\n", L"Ontbrekende bestandsnaam in %s\n"); |
| 462 | addPair("Recursive option with no wildcard", L"Recursieve optie met geen wildcard"); |
| 463 | addPair("Did you intend quote the filename", L"Heeft u van plan citaat van de bestandsnaam"); |
| 464 | addPair("No file to process %s\n", L"Geen bestand te verwerken %s\n"); |
| 465 | addPair("Did you intend to use --recursive", L"Hebt u van plan bent te gebruiken --recursive"); |
| 466 | addPair("Cannot process UTF-32 encoding", L"Kan niet verwerken UTF-32 codering"); |
| 467 | addPair("\nArtistic Style has terminated", L"\nArtistic Style heeft beëindigd"); |
| 468 | } |
| 469 | |
| 470 | English::English() |
| 471 | // this class is NOT translated |
nothing calls this directly
no outgoing calls
no test coverage detected