en-au.js 3.5 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. * English (Australia) language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'en-au' ] = {
  18. // ARIA description.
  19. editor: 'Rich Text 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: 'Press ALT 0 for help', // MISSING
  26. browseServer: 'Browse Server',
  27. url: 'URL',
  28. protocol: 'Protocol',
  29. upload: 'Upload',
  30. uploadSubmit: 'Send it to the Server',
  31. image: 'Image',
  32. flash: 'Flash',
  33. form: 'Form',
  34. checkbox: 'Checkbox',
  35. radio: 'Radio Button',
  36. textField: 'Text Field',
  37. textarea: 'Textarea',
  38. hiddenField: 'Hidden Field',
  39. button: 'Button',
  40. select: 'Selection Field',
  41. imageButton: 'Image Button',
  42. notSet: '<not set>',
  43. id: 'Id',
  44. name: 'Name',
  45. langDir: 'Language Direction',
  46. langDirLtr: 'Left to Right (LTR)',
  47. langDirRtl: 'Right to Left (RTL)',
  48. langCode: 'Language Code',
  49. longDescr: 'Long Description URL',
  50. cssClass: 'Stylesheet Classes',
  51. advisoryTitle: 'Advisory Title',
  52. cssStyle: 'Style',
  53. ok: 'OK',
  54. cancel: 'Cancel',
  55. close: 'Close', // MISSING
  56. preview: 'Preview',
  57. resize: 'Resize', // MISSING
  58. generalTab: 'General',
  59. advancedTab: 'Advanced',
  60. validateNumberFailed: 'This value is not a number.',
  61. confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
  62. confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?',
  63. options: 'Options', // MISSING
  64. target: '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: 'Left to Right (LTR)',
  70. langDirRTL: 'Right to Left (RTL)',
  71. styles: 'Style',
  72. cssClasses: 'Stylesheet Classes',
  73. width: 'Width', // MISSING
  74. height: 'Height', // MISSING
  75. align: 'Align',
  76. alignLeft: 'Left', // MISSING
  77. alignRight: 'Right', // MISSING
  78. alignCenter: 'Centre',
  79. alignJustify: 'Justify',
  80. alignTop: 'Top', // MISSING
  81. alignMiddle: 'Middle', // MISSING
  82. alignBottom: 'Bottom', // MISSING
  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. };