pl.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*************************************************************
  2. *
  3. * MathJax/localization/pl/pl.js
  4. *
  5. * Copyright (c) 2009-2018 The MathJax Consortium
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. */
  20. MathJax.Localization.addTranslation("pl",null,{
  21. menuTitle: "polski",
  22. version: "2.7.5",
  23. isLoaded: true,
  24. domains: {
  25. "_": {
  26. version: "2.7.5",
  27. isLoaded: true,
  28. strings: {
  29. 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.)",
  30. MathProcessingError: "B\u0142\u0105d podczas przetwarzania wzor\u00F3w matematycznych",
  31. MathError: "B\u0142\u0105d we wzorze matematycznym",
  32. LoadFile: "\u0141aduj\u0119 %1",
  33. Loading: "\u0141aduj\u0119",
  34. LoadFailed: "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 pliku: %1",
  35. ProcessMath: "Przetwarzam wzory matematyczne: %1%%",
  36. Processing: "Przetwarzam",
  37. TypesetMath: "Przetwarzam wzory matematyczne: %1%%",
  38. Typesetting: "Przetwarzam",
  39. MathJaxNotSupported: "Twoja przegl\u0105darka nie obs\u0142uguje MathJax",
  40. ErrorTips: "Porady debugowania: u\u017Cyj %%1, sprawd\u017A %%2 w konsoli przegl\u0105darki."
  41. }
  42. },
  43. "FontWarnings": {},
  44. "HTML-CSS": {},
  45. "HelpDialog": {},
  46. "MathML": {},
  47. "MathMenu": {},
  48. "TeX": {}
  49. },
  50. plural: function (n) {
  51. if (n == 1) {
  52. return 1;
  53. } else if (n % 10 >=2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20)) {
  54. return 2;
  55. } else {
  56. return 3;
  57. }
  58. },
  59. number: function (n) {
  60. return String(n).replace(".", ","); // replace dot by comma
  61. }
  62. });
  63. MathJax.Ajax.loadComplete("[MathJax]/localization/pl/pl.js");