de.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */
  2. /* vim: set ts=2 et sw=2 tw=80: */
  3. /*************************************************************
  4. *
  5. * MathJax/localization/de/de.js
  6. *
  7. * Copyright (c) 2013 The MathJax Consortium
  8. *
  9. * Licensed under the Apache License, Version 2.0 (the "License");
  10. * you may not use this file except in compliance with the License.
  11. * You may obtain a copy of the License at
  12. *
  13. * http://www.apache.org/licenses/LICENSE-2.0
  14. *
  15. * Unless required by applicable law or agreed to in writing, software
  16. * distributed under the License is distributed on an "AS IS" BASIS,
  17. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. * See the License for the specific language governing permissions and
  19. * limitations under the License.
  20. *
  21. */
  22. MathJax.Localization.addTranslation("de",null,{
  23. menuTitle: "Deutsch",
  24. version: "2.2",
  25. isLoaded: true,
  26. domains: {
  27. "_": {
  28. isLoaded: true,
  29. version: "2.2",
  30. strings: {
  31. CookieConfig:
  32. "MathJax hat eine Cookie mit ausf\u00FChrbaren Code gefunden. " +
  33. "Soll dieser Code ausgef\u00FChrt werden?\n\n" +
  34. "(Klicken Sie 'Abbrechen' falls Sie das Cookie nicht selber akzeptiert haben.)",
  35. // "MathJax has found a user-configuration cookie that includes code to " +
  36. // "be run. Do you want to run it?\n\n" +
  37. // "(You should press Cancel unless you set up the cookie yourself.)",
  38. MathProcessingError:
  39. "Mathe Verarbeitungsfehler",
  40. // "Math Processing Error",
  41. MathError:
  42. "Mathe Fehler",
  43. // "Math Error",
  44. LoadFile:
  45. "Lade %1",
  46. // "Loading %1",
  47. Loading:
  48. "Laden", //TODO could also be "Lade"
  49. // "Loading",
  50. LoadFailed:
  51. "Datei konnte nicht geladen werden: %1",
  52. // "File failed to load: %1",
  53. ProcessMath:
  54. "Mathe Verarbeitung: %1%%",
  55. // "Processing Math: %1%%",
  56. Processing:
  57. "Verarbeiten",
  58. // "Processing",
  59. TypesetMath:
  60. "Mathe wird gesetzt: %1%%",
  61. // "Typesetting Math: %1%%",
  62. Typesetting:
  63. "Setzen",
  64. // "Typesetting",
  65. MathJaxNotSupported:
  66. "Ihr Webbrowser unterst\u00FCtzt MathJax nicht"
  67. // "Your browser does not support MathJax"
  68. }
  69. },
  70. MathMenu: {},
  71. FontWarnings: {},
  72. HelpDialog: {},
  73. TeX: {},
  74. MathML: {},
  75. "HTML-CSS": {}
  76. },
  77. plural: function(n) {
  78. if (n === 1) {return 1} // one
  79. return 2; // other
  80. },
  81. number: function(n) {
  82. return String(n).replace(".", ","); // replace dot by comma
  83. }
  84. });
  85. MathJax.Ajax.loadComplete("[MathJax]/localization/de/de.js");