pl.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/pl/pl.js
  6. *
  7. * Copyright (c) 2009-2015 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("pl",null,{
  23. menuTitle: "polski",
  24. version: "2.5.0",
  25. isLoaded: true,
  26. domains: {
  27. "_": {
  28. version: "2.5.0",
  29. isLoaded: true,
  30. strings: {
  31. CookieConfig: "MathJax znalaz\u0142 konfiguracj\u0119 zapisan\u0105 w ciasteczku, kt\u00F3ra zawiera kod do uruchomienia. Czy chcesz go uruchomi\u0107?\n\n(Powiniene\u015B nacisn\u0105\u0107 Anuluj, je\u015Bli to nie Ty stworzy\u0142e\u015B t\u0119 konfiguracj\u0119.)",
  32. MathProcessingError: "B\u0142\u0105d podczas przetwarzania wzor\u00F3w matematycznych",
  33. MathError: "B\u0142\u0105d we wzorze matematycznym",
  34. LoadFile: "\u0141aduj\u0119 %1",
  35. Loading: "\u0141aduj\u0119",
  36. LoadFailed: "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 pliku: %1",
  37. ProcessMath: "Przetwarzam wzory matematyczne: %1%%",
  38. Processing: "Przetwarzam",
  39. TypesetMath: "Przetwarzam wzory matematyczne: %1%%",
  40. Typesetting: "Przetwarzam",
  41. MathJaxNotSupported: "Twoja przegl\u0105darka nie obs\u0142uguje MathJax"
  42. }
  43. },
  44. "FontWarnings": {},
  45. "HTML-CSS": {},
  46. "HelpDialog": {},
  47. "MathML": {},
  48. "MathMenu": {},
  49. "TeX": {}
  50. },
  51. plural: function (n) {
  52. if (n == 1) {
  53. return 1;
  54. } else if (n % 10 >=2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20)) {
  55. return 2;
  56. } else {
  57. return 3;
  58. }
  59. },
  60. number: function (n) {
  61. return String(n).replace(".", ","); // replace dot by comma
  62. }
  63. });
  64. MathJax.Ajax.loadComplete("[MathJax]/localization/pl/pl.js");