MathML.js 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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/MathML.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","MathML",{
  23. version: "2.2",
  24. isLoaded: true,
  25. strings: {
  26. BadMglyph:
  27. "Schlechter mglpyh: %1",
  28. // "Bad mglyph: %1",
  29. BadMglyphFont:
  30. "Schlechter Font: %1",
  31. // "Bad font: %1",
  32. MathPlayer: //TODO check names of German Windows settings http://support.microsoft.com/
  33. "MathJax konnnte MathPlayer nicht einrichten.\n\n"+
  34. "Falls MathPlayer nicht installiert ist, muss es erst installiert werden.\n"+
  35. "Eventuell blockieren die Sicherheitsoptionen ActiveX; \u00FCberpr\u00FCfen Sie\n"+
  36. "unter 'Internetoptionen' -> 'Sicherheit' -> 'Stufe Anpassen',\n"+
  37. "ob ActiveX aktiviert ist.\n\n"+
  38. "Bei der jetzigen Konfiguration wird MathJax nur Fehlermeldungen anzeigen.",
  39. // "MathJax was not able to set up MathPlayer.\n\n"+
  40. // "If MathPlayer is not installed, you need to install it first.\n"+
  41. // "Otherwise, your security settings may be preventing ActiveX \n"+
  42. // "controls from running. Use the Internet Options item under\n"+
  43. // "the Tools menu and select the Security tab, then press the\n"+
  44. // "Custom Level button. Check that the settings for\n"+
  45. // "'Run ActiveX Controls', and 'Binary and script behaviors'\n"+
  46. // "are enabled.\n\n"+
  47. // "Currently you will see error messages rather than\n"+
  48. // "typeset mathematics.",
  49. CantCreateXMLParser://TODO check name of German Windows settings
  50. "MathJax kann keinen XML-Parser f\u00FC r MathML erzeugen. "+
  51. "\u00DC berpr\u00FC fen Sie die Einstellungen unter\n"+
  52. "'Internetoptionen'-> 'Werkzeuge' -> 'Sicherheit' -> 'Stufe Anpassen'\n"+
  53. "und aktivieren sie ActiveX.\n\n"+
  54. "MathJax kann sonst kein MathML verarbeiten.",
  55. // "MathJax can't create an XML parser for MathML. Check that\n"+
  56. // "the 'Script ActiveX controls marked safe for scripting' security\n"+
  57. // "setting is enabled (use the Internet Options item in the Tools\n"+
  58. // "menu, and select the Security panel, then press the Custom Level\n"+
  59. // "button to check this).\n\n"+
  60. // "MathML equations will not be able to be processed by MathJax.",
  61. UnknownNodeType:
  62. "Unbekannter Knotentyp: %1",
  63. // "Unknown node type: %1",
  64. UnexpectedTextNode:
  65. "Unbekannter Textknoten: %1",
  66. // "Unexpected text node: %1",
  67. ErrorParsingMathML:
  68. "Fehler beim Parsen von MathML",
  69. // "Error parsing MathML",
  70. ParsingError:
  71. "Fehler beim Parsen von MathML: %1",
  72. // "Error parsing MathML: %1",
  73. MathMLSingleElement:
  74. "MathML muss ein einzelnes <math> Element sein",
  75. // "MathML must be formed by a single element",
  76. MathMLRootElement:
  77. "MathML muss ein einzelnes <math> Element sein, nicht %1"
  78. // "MathML must be formed by a <math> element, not %1"
  79. }
  80. });
  81. MathJax.Ajax.loadComplete("[MathJax]/localization/de/MathML.js");