| 553 | } |
| 554 | |
| 555 | Hindi::Hindi() // हिन्दी |
| 556 | // build the translation vector in the Translation base class |
| 557 | { |
| 558 | // NOTE: Scintilla based editors (CodeBlocks) cannot always edit Hindi. |
| 559 | // Use Visual Studio instead. |
| 560 | addPair("Formatted %s\n", L"स्वरूपित किया %s\n"); // should align with unchanged |
| 561 | addPair("Unchanged %s\n", L"अपरिवर्तित %s\n"); // should align with formatted |
| 562 | addPair("Directory %s\n", L"निर्देशिका %s\n"); |
| 563 | addPair("Exclude %s\n", L"निकालना %s\n"); |
| 564 | addPair("Exclude (unmatched) %s\n", L"अपवर्जित (बेजोड़) %s\n"); |
| 565 | addPair(" %s formatted %s unchanged ", L" %s स्वरूपित किया %s अपरिवर्तित "); |
| 566 | addPair(" seconds ", L" सेकंड "); |
| 567 | addPair("%d min %d sec ", L"%d मिनट %d सेकंड "); |
| 568 | addPair("%s lines\n", L"%s लाइनों\n"); |
| 569 | addPair("Using default options file %s\n", L"डिफ़ॉल्ट विकल्प का उपयोग कर फ़ाइल %s\n"); |
| 570 | addPair("Invalid option file options:", L"अवैध विकल्प फ़ाइल विकल्प हैं:"); |
| 571 | addPair("Invalid command line options:", L"कमांड लाइन विकल्प अवैध:"); |
| 572 | addPair("For help on options type 'astyle -h'", L"विकल्पों पर मदद के लिए प्रकार 'astyle -h'"); |
| 573 | addPair("Cannot open options file", L"विकल्प फ़ाइल नहीं खोल सकता है"); |
| 574 | addPair("Cannot open directory", L"निर्देशिका नहीं खोल सकता"); |
| 575 | addPair("Missing filename in %s\n", L"लापता में फ़ाइलनाम %s\n"); |
| 576 | addPair("Recursive option with no wildcard", L"कोई वाइल्डकार्ड साथ पुनरावर्ती विकल्प"); |
| 577 | addPair("Did you intend quote the filename", L"क्या आप बोली फ़ाइलनाम का इरादा"); |
| 578 | addPair("No file to process %s\n", L"कोई फ़ाइल %s प्रक्रिया के लिए\n"); |
| 579 | addPair("Did you intend to use --recursive", L"क्या आप उपयोग करना चाहते हैं --recursive"); |
| 580 | addPair("Cannot process UTF-32 encoding", L"UTF-32 कूटबन्धन प्रक्रिया नहीं कर सकते"); |
| 581 | addPair("\nArtistic Style has terminated", L"\nArtistic Style समाप्त किया है"); |
| 582 | } |
| 583 | |
| 584 | Italian::Italian() // Italiano |
| 585 | // build the translation vector in the Translation base class |
nothing calls this directly
no outgoing calls
no test coverage detected