hi.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /**
  6. * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
  7. * Hindi language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'hi' ] = {
  18. // ARIA description.
  19. editor: 'रिच टेक्स्ट एडिटर',
  20. editorPanel: 'Rich Text Editor panel', // MISSING
  21. // Common messages and labels.
  22. common: {
  23. // Screenreader titles. Please note that screenreaders are not always capable
  24. // of reading non-English words. So be careful while translating it.
  25. editorHelp: 'मदद के लिये ALT 0 दबाए',
  26. browseServer: 'सर्वर ब्राउज़ करें',
  27. url: 'URL',
  28. protocol: 'प्रोटोकॉल',
  29. upload: 'अपलोड',
  30. uploadSubmit: 'इसे सर्वर को भेजें',
  31. image: 'तस्वीर',
  32. flash: 'फ़्लैश',
  33. form: 'फ़ॉर्म',
  34. checkbox: 'चॅक बॉक्स',
  35. radio: 'रेडिओ बटन',
  36. textField: 'टेक्स्ट फ़ील्ड',
  37. textarea: 'टेक्स्ट एरिया',
  38. hiddenField: 'गुप्त फ़ील्ड',
  39. button: 'बटन',
  40. select: 'चुनाव फ़ील्ड',
  41. imageButton: 'तस्वीर बटन',
  42. notSet: '<सॅट नहीं>',
  43. id: 'Id',
  44. name: 'नाम',
  45. langDir: 'भाषा लिखने की दिशा',
  46. langDirLtr: 'बायें से दायें (LTR)',
  47. langDirRtl: 'दायें से बायें (RTL)',
  48. langCode: 'भाषा कोड',
  49. longDescr: 'अधिक विवरण के लिए URL',
  50. cssClass: 'स्टाइल-शीट क्लास',
  51. advisoryTitle: 'परामर्श शीर्शक',
  52. cssStyle: 'स्टाइल',
  53. ok: 'ठीक है',
  54. cancel: 'रद्द करें',
  55. close: 'Close', // MISSING
  56. preview: 'प्रीव्यू',
  57. resize: 'Resize', // MISSING
  58. generalTab: 'सामान्य',
  59. advancedTab: 'ऍड्वान्स्ड',
  60. validateNumberFailed: 'This value is not a number.', // MISSING
  61. confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
  62. confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING
  63. options: 'Options', // MISSING
  64. target: 'टार्गेट',
  65. targetNew: 'New Window (_blank)', // MISSING
  66. targetTop: 'Topmost Window (_top)', // MISSING
  67. targetSelf: 'Same Window (_self)', // MISSING
  68. targetParent: 'Parent Window (_parent)', // MISSING
  69. langDirLTR: 'बायें से दायें (LTR)',
  70. langDirRTL: 'दायें से बायें (RTL)',
  71. styles: 'स्टाइल',
  72. cssClasses: 'स्टाइल-शीट क्लास',
  73. width: 'चौड़ाई',
  74. height: 'ऊँचाई',
  75. align: 'ऍलाइन',
  76. alignLeft: 'दायें',
  77. alignRight: 'दायें',
  78. alignCenter: 'बीच में',
  79. alignJustify: 'ब्लॉक जस्टीफ़ाई',
  80. alignTop: 'ऊपर',
  81. alignMiddle: 'मध्य',
  82. alignBottom: 'नीचे',
  83. alignNone: 'None', // MISSING
  84. invalidValue : 'Invalid value.', // MISSING
  85. invalidHeight: 'Height must be a number.', // MISSING
  86. invalidWidth: 'Width must be a number.', // MISSING
  87. invalidCssLength: 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
  88. invalidHtmlLength: 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
  89. invalidInlineStyle: 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.', // MISSING
  90. cssLengthTooltip: 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
  91. // Put the voice-only part of the label in the span.
  92. unavailable: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
  93. }
  94. };