dependabot-linguist 0.0.1 → 0.212.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (223) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +25 -3
  3. data/Gemfile +0 -9
  4. data/Gemfile.lock +162 -5
  5. data/LICENSE +674 -1
  6. data/{LICENSE.Nonstandard → LICENSE.dependabot-core} +0 -0
  7. data/Makefile +8 -1
  8. data/README.md +39 -5
  9. data/demo_script.rb +50 -0
  10. data/dependabot-linguist.gemspec +16 -5
  11. data/devlog.md +186 -0
  12. data/exe/dependabot-linguist +145 -0
  13. data/lib/dependabot/linguist/dependabot_file_validator.rb +190 -0
  14. data/lib/dependabot/linguist/dependabot_patch.rb +8 -0
  15. data/lib/dependabot/linguist/file_fetchers/base.rb +48 -0
  16. data/lib/dependabot/linguist/file_fetchers/git_submodules.rb +63 -0
  17. data/lib/dependabot/linguist/file_fetchers/go_modules.rb +41 -0
  18. data/lib/dependabot/linguist/language.rb +62 -0
  19. data/lib/dependabot/linguist/languages_to_ecosystems/contexts.rb +234 -0
  20. data/lib/dependabot/linguist/languages_to_ecosystems/contexts_applied.rb +36 -0
  21. data/lib/dependabot/linguist/languages_to_ecosystems/languages.yaml +7950 -0
  22. data/lib/dependabot/linguist/languages_to_ecosystems/main.rb +55 -0
  23. data/lib/dependabot/linguist/languages_to_ecosystems/manager_ecosystem_maps.rb +154 -0
  24. data/lib/dependabot/linguist/languages_to_patch.txt +37 -0
  25. data/lib/dependabot/linguist/linguist_patch.rb +6 -0
  26. data/lib/dependabot/linguist/repository.rb +232 -0
  27. data/lib/dependabot/linguist/version.rb +1 -1
  28. data/lib/dependabot/linguist.rb +5 -2
  29. data/smoke-test/README.md +58 -0
  30. data/smoke-test/bundler/Gemfile +9 -0
  31. data/smoke-test/bundler/Gemfile.lock +47 -0
  32. data/smoke-test/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  33. data/smoke-test/cargo/Cargo.lock +90 -0
  34. data/smoke-test/cargo/Cargo.toml +8 -0
  35. data/smoke-test/composer/composer.json +5 -0
  36. data/smoke-test/composer/composer.lock +72 -0
  37. data/smoke-test/composer/vendor/autoload.php +7 -0
  38. data/smoke-test/composer/vendor/composer/ClassLoader.php +445 -0
  39. data/smoke-test/composer/vendor/composer/LICENSE +21 -0
  40. data/smoke-test/composer/vendor/composer/autoload_classmap.php +13 -0
  41. data/smoke-test/composer/vendor/composer/autoload_namespaces.php +9 -0
  42. data/smoke-test/composer/vendor/composer/autoload_psr4.php +9 -0
  43. data/smoke-test/composer/vendor/composer/autoload_real.php +55 -0
  44. data/smoke-test/composer/vendor/composer/autoload_static.php +23 -0
  45. data/smoke-test/composer/vendor/composer/installed.json +57 -0
  46. data/smoke-test/composer/vendor/phpmailer/phpmailer/.gitignore +3 -0
  47. data/smoke-test/composer/vendor/phpmailer/phpmailer/LICENSE +504 -0
  48. data/smoke-test/composer/vendor/phpmailer/phpmailer/README.md +112 -0
  49. data/smoke-test/composer/vendor/phpmailer/phpmailer/changelog.md +530 -0
  50. data/smoke-test/composer/vendor/phpmailer/phpmailer/class.phpmailer.php +2758 -0
  51. data/smoke-test/composer/vendor/phpmailer/phpmailer/class.pop3.php +417 -0
  52. data/smoke-test/composer/vendor/phpmailer/phpmailer/class.smtp.php +1075 -0
  53. data/smoke-test/composer/vendor/phpmailer/phpmailer/composer.json +32 -0
  54. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/Callback_function_notes.txt +17 -0
  55. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/DomainKeys_notes.txt +55 -0
  56. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/Note_for_SMTP_debugging.txt +23 -0
  57. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/extending.html +148 -0
  58. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/faq.html +67 -0
  59. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/generatedocs.sh +4 -0
  60. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/pop3_article.txt +39 -0
  61. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/use_gmail.txt +44 -0
  62. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/contents.html +20 -0
  63. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/images/phpmailer.gif +0 -0
  64. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.gif +0 -0
  65. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/index.html +50 -0
  66. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_db_smtp_basic.php +58 -0
  67. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_mail_advanced.php +30 -0
  68. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_mail_basic.php +41 -0
  69. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_pop_before_smtp_advanced.php +39 -0
  70. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_pop_before_smtp_basic.php +49 -0
  71. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_sendmail_advanced.php +33 -0
  72. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_sendmail_basic.php +43 -0
  73. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_advanced.php +42 -0
  74. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_advanced_no_auth.php +36 -0
  75. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_basic.php +58 -0
  76. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_basic_no_auth.php +53 -0
  77. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_gmail_advanced.php +42 -0
  78. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_gmail_basic.php +59 -0
  79. data/smoke-test/composer/vendor/phpmailer/phpmailer/extras/class.html2text.inc +489 -0
  80. data/smoke-test/composer/vendor/phpmailer/phpmailer/extras/htmlfilter.php +861 -0
  81. data/smoke-test/composer/vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php +185 -0
  82. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php +26 -0
  83. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-br.php +25 -0
  84. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php +25 -0
  85. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php +25 -0
  86. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-cz.php +24 -0
  87. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php +24 -0
  88. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-dk.php +25 -0
  89. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php +25 -0
  90. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php +25 -0
  91. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php +26 -0
  92. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php +26 -0
  93. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php +24 -0
  94. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php +24 -0
  95. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php +26 -0
  96. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php +25 -0
  97. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php +24 -0
  98. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-no.php +24 -0
  99. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php +24 -0
  100. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php +26 -0
  101. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php +24 -0
  102. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-se.php +25 -0
  103. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php +25 -0
  104. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php +26 -0
  105. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php +25 -0
  106. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php +25 -0
  107. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/contents.html +10 -0
  108. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/phpmailerTest.php +1084 -0
  109. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/test.png +0 -0
  110. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/test_callback.php +84 -0
  111. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/testemail.php +48 -0
  112. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/LGPLv3.txt +165 -0
  113. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/contents.html +14 -0
  114. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/images/aikido.gif +0 -0
  115. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/images/bkgrnd.gif +0 -0
  116. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/images/phpmailer.gif +0 -0
  117. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/index.php +427 -0
  118. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/clipboard.swf +0 -0
  119. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushBash.js +59 -0
  120. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushCSharp.js +64 -0
  121. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushCpp.js +99 -0
  122. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushCss.js +93 -0
  123. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushDelphi.js +57 -0
  124. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushDiff.js +43 -0
  125. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushGroovy.js +69 -0
  126. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushJScript.js +51 -0
  127. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushJava.js +55 -0
  128. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPerl.js +74 -0
  129. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPhp.js +91 -0
  130. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPlain.js +35 -0
  131. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPython.js +56 -0
  132. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushRuby.js +57 -0
  133. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushScala.js +53 -0
  134. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushSql.js +68 -0
  135. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushVb.js +58 -0
  136. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushXml.js +71 -0
  137. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shCore.js +30 -0
  138. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shLegacy.js +30 -0
  139. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/src/shCore.js +1949 -0
  140. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/src/shLegacy.js +172 -0
  141. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/help.png +0 -0
  142. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/magnifier.png +0 -0
  143. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/page_white_code.png +0 -0
  144. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/page_white_copy.png +0 -0
  145. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/printer.png +0 -0
  146. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shCore.css +321 -0
  147. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeDefault.css +191 -0
  148. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeDjango.css +193 -0
  149. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeEmacs.css +192 -0
  150. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeFadeToGrey.css +193 -0
  151. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeMidnight.css +192 -0
  152. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeRDark.css +192 -0
  153. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/wrapping.png +0 -0
  154. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/test.html +46 -0
  155. data/smoke-test/dependabot-file/no-config/.github/TARGET.yaml +14 -0
  156. data/smoke-test/dependabot-file/no-config/bundler/Gemfile +9 -0
  157. data/smoke-test/dependabot-file/no-config/bundler/Gemfile.lock +47 -0
  158. data/smoke-test/dependabot-file/no-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  159. data/smoke-test/dependabot-file/no-config/cargo/Cargo.lock +90 -0
  160. data/smoke-test/dependabot-file/no-config/cargo/Cargo.toml +8 -0
  161. data/smoke-test/dependabot-file/no-config/composer/composer.json +5 -0
  162. data/smoke-test/dependabot-file/no-config/composer/composer.lock +72 -0
  163. data/smoke-test/dependabot-file/over-config/.github/TARGET.yaml +17 -0
  164. data/smoke-test/dependabot-file/over-config/.github/dependabot.yaml +12 -0
  165. data/smoke-test/dependabot-file/over-config/bundler/Gemfile +9 -0
  166. data/smoke-test/dependabot-file/over-config/bundler/Gemfile.lock +47 -0
  167. data/smoke-test/dependabot-file/over-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  168. data/smoke-test/dependabot-file/over-config/cargo/Cargo.lock +90 -0
  169. data/smoke-test/dependabot-file/over-config/cargo/Cargo.toml +8 -0
  170. data/smoke-test/dependabot-file/over-config/composer/composer.json +5 -0
  171. data/smoke-test/dependabot-file/over-config/composer/composer.lock +72 -0
  172. data/smoke-test/dependabot-file/overer-config/.github/TARGET.yaml +19 -0
  173. data/smoke-test/dependabot-file/overer-config/.github/dependabot.yaml +12 -0
  174. data/smoke-test/dependabot-file/overer-config/bundler/Gemfile +9 -0
  175. data/smoke-test/dependabot-file/overer-config/bundler/Gemfile.lock +47 -0
  176. data/smoke-test/dependabot-file/overer-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  177. data/smoke-test/dependabot-file/overer-config/cargo/Cargo.lock +90 -0
  178. data/smoke-test/dependabot-file/overer-config/cargo/Cargo.toml +8 -0
  179. data/smoke-test/dependabot-file/overer-config/composer/composer.json +5 -0
  180. data/smoke-test/dependabot-file/overer-config/composer/composer.lock +72 -0
  181. data/smoke-test/dependabot-file/partial-config/.github/TARGET.yaml +17 -0
  182. data/smoke-test/dependabot-file/partial-config/.github/dependabot.yaml +7 -0
  183. data/smoke-test/dependabot-file/partial-config/bundler/Gemfile +9 -0
  184. data/smoke-test/dependabot-file/partial-config/bundler/Gemfile.lock +47 -0
  185. data/smoke-test/dependabot-file/partial-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  186. data/smoke-test/dependabot-file/partial-config/cargo/Cargo.lock +90 -0
  187. data/smoke-test/dependabot-file/partial-config/cargo/Cargo.toml +8 -0
  188. data/smoke-test/dependabot-file/partial-config/composer/composer.json +5 -0
  189. data/smoke-test/dependabot-file/partial-config/composer/composer.lock +72 -0
  190. data/smoke-test/docker/Dockerfile +19 -0
  191. data/smoke-test/elm/elm-package.json +15 -0
  192. data/smoke-test/elm/elm.json +31 -0
  193. data/smoke-test/github-actions/both/.github/workflows/this.yaml +11 -0
  194. data/smoke-test/github-actions/both/yaml/action.yml +13 -0
  195. data/smoke-test/github-actions/invalid/invalid_file.yaml +0 -0
  196. data/smoke-test/github-actions/workflow/.github/workflows/this.yaml +11 -0
  197. data/smoke-test/github-actions/yaml/action.yml +13 -0
  198. data/smoke-test/gitsubmodule/.gitmodules +4 -0
  199. data/smoke-test/gomod/go.mod +16 -0
  200. data/smoke-test/gomod/go.sum +18 -0
  201. data/smoke-test/gomod/gomain.go +14 -0
  202. data/smoke-test/gradle/.gitignore +1 -0
  203. data/smoke-test/gradle/build.gradle +65 -0
  204. data/smoke-test/maven/pom.xml +65 -0
  205. data/smoke-test/mix/mix.exs +24 -0
  206. data/smoke-test/mix/mix.lock +5 -0
  207. data/smoke-test/npm/package-lock.json +166 -0
  208. data/smoke-test/npm/package.json +22 -0
  209. data/smoke-test/npm/removed/package-lock.json +44 -0
  210. data/smoke-test/npm/removed/package.json +15 -0
  211. data/smoke-test/nuget/project.csproj +14 -0
  212. data/smoke-test/pip/pip/requirements.txt +5 -0
  213. data/smoke-test/pip/pip-compile/requirements.in +2 -0
  214. data/smoke-test/pip/pip-compile/requirements.txt +16 -0
  215. data/smoke-test/pip/pipenv/Pipfile +13 -0
  216. data/smoke-test/pip/pipenv/Pipfile.lock +86 -0
  217. data/smoke-test/pip/poetry/poetry.lock +33 -0
  218. data/smoke-test/pip/poetry/pyproject.toml +18 -0
  219. data/smoke-test/pub/pubspec.lock +40 -0
  220. data/smoke-test/pub/pubspec.yaml +10 -0
  221. data/smoke-test/terraform/main.tf +143 -0
  222. metadata +314 -6
  223. data/LICENSE.GPL-3.0-only +0 -674
@@ -0,0 +1,24 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Polish Version
5
+ */
6
+
7
+ $PHPMAILER_LANG['authenticate'] = 'Błąd SMTP: Nie można przeprowadzić autentykacji.';
8
+ $PHPMAILER_LANG['connect_host'] = 'Błąd SMTP: Nie można połączyć się z wybranym hostem.';
9
+ $PHPMAILER_LANG['data_not_accepted'] = 'Błąd SMTP: Dane nie zostały przyjęte.';
10
+ //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
11
+ $PHPMAILER_LANG['encoding'] = 'Nieznany sposób kodowania znaków: ';
12
+ $PHPMAILER_LANG['execute'] = 'Nie można uruchomić: ';
13
+ $PHPMAILER_LANG['file_access'] = 'Brak dostępu do pliku: ';
14
+ $PHPMAILER_LANG['file_open'] = 'Nie można otworzyć pliku: ';
15
+ $PHPMAILER_LANG['from_failed'] = 'Następujący adres Nadawcy jest jest nieprawidłowy: ';
16
+ $PHPMAILER_LANG['instantiate'] = 'Nie można wywołać funkcji mail(). Sprawdź konfigurację serwera.';
17
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
18
+ $PHPMAILER_LANG['provide_address'] = 'Należy podać prawidłowy adres email Odbiorcy.';
19
+ $PHPMAILER_LANG['mailer_not_supported'] = 'Wybrana metoda wysyłki wiadomości nie jest obsługiwana.';
20
+ $PHPMAILER_LANG['recipients_failed'] = 'Błąd SMTP: Następujący odbiorcy są nieprawidłowi: ';
21
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
22
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
23
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
24
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,26 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Romanian Version
5
+ * @package PHPMailer
6
+ * @author Catalin Constantin <catalin@dazoot.ro>
7
+ */
8
+
9
+ $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Nu a functionat autentificarea.';
10
+ $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Nu m-am putut conecta la adresa SMTP.';
11
+ $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Continutul mailului nu a fost acceptat.';
12
+ //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
13
+ $PHPMAILER_LANG['encoding'] = 'Encodare necunoscuta: ';
14
+ $PHPMAILER_LANG['execute'] = 'Nu pot executa: ';
15
+ $PHPMAILER_LANG['file_access'] = 'Nu pot accesa fisierul: ';
16
+ $PHPMAILER_LANG['file_open'] = 'Eroare de fisier: Nu pot deschide fisierul: ';
17
+ $PHPMAILER_LANG['from_failed'] = 'Urmatoarele adrese From au dat eroare: ';
18
+ $PHPMAILER_LANG['instantiate'] = 'Nu am putut instantia functia mail.';
19
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
20
+ $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.';
21
+ $PHPMAILER_LANG['provide_address'] = 'Trebuie sa adaugati cel putin un recipient (adresa de mail).';
22
+ $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Urmatoarele adrese de mail au dat eroare: ';
23
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
24
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
25
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
26
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,24 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Russian Version by Alexey Chumakov <alex@chumakov.ru>
5
+ */
6
+
7
+ $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.';
8
+ $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к серверу SMTP.';
9
+ $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.';
10
+ //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
11
+ $PHPMAILER_LANG['encoding'] = 'Неизвестный вид кодировки: ';
12
+ $PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: ';
13
+ $PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: ';
14
+ $PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удается открыть файл: ';
15
+ $PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: ';
16
+ $PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail.';
17
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
18
+ $PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один адрес e-mail получателя.';
19
+ $PHPMAILER_LANG['mailer_not_supported'] = ' - почтовый сервер не поддерживается.';
20
+ $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: отправка по следующим адресам получателей не удалась: ';
21
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
22
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
23
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
24
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,25 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Swedish Version
5
+ * Author: Johan Linnér <johan@linner.biz>
6
+ */
7
+
8
+ $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.';
9
+ $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.';
10
+ $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.';
11
+ //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
12
+ $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: ';
13
+ $PHPMAILER_LANG['execute'] = 'Kunde inte köra: ';
14
+ $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: ';
15
+ $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: ';
16
+ $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: ';
17
+ $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.';
18
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
19
+ $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.';
20
+ $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.';
21
+ $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: ';
22
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
23
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
24
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
25
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,25 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Slovak Version
5
+ * Author: Michal Tinka <michaltinka@gmail.com>
6
+ */
7
+
8
+ $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.';
9
+ $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.';
10
+ $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté';
11
+ $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.';
12
+ $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: ';
13
+ $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: ';
14
+ $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: ';
15
+ $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: ';
16
+ $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: ';
17
+ $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.';
18
+ $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: ';
19
+ $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.';
20
+ $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.';
21
+ $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne ';
22
+ $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: ';
23
+ $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.';
24
+ $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: ';
25
+ $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: ';
@@ -0,0 +1,26 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Turkish version
5
+ * Türkçe Versiyonu
6
+ * ÝZYAZILIM - Elçin Özel - Can Yýlmaz - Mehmet Benlioðlu
7
+ */
8
+
9
+ $PHPMAILER_LANG['authenticate'] = 'SMTP Hatasý: Doðrulanamýyor.';
10
+ $PHPMAILER_LANG['connect_host'] = 'SMTP Hatasý: SMTP hosta baðlanýlamýyor.';
11
+ $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Hatasý: Veri kabul edilmedi.';
12
+ //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
13
+ $PHPMAILER_LANG['encoding'] = 'Bilinmeyen þifreleme: ';
14
+ $PHPMAILER_LANG['execute'] = 'Çalýþtýrýlamýyor: ';
15
+ $PHPMAILER_LANG['file_access'] = 'Dosyaya eriþilemiyor: ';
16
+ $PHPMAILER_LANG['file_open'] = 'Dosya Hatasý: Dosya açýlamýyor: ';
17
+ $PHPMAILER_LANG['from_failed'] = 'Baþarýsýz olan gönderici adresi: ';
18
+ $PHPMAILER_LANG['instantiate'] = 'Örnek mail fonksiyonu yaratýlamadý.';
19
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
20
+ $PHPMAILER_LANG['provide_address'] = 'En az bir tane mail adresi belirtmek zorundasýnýz alýcýnýn email adresi.';
21
+ $PHPMAILER_LANG['mailer_not_supported'] = ' mailler desteklenmemektedir.';
22
+ $PHPMAILER_LANG['recipients_failed'] = 'SMTP Hatasý: alýcýlara ulaþmadý: ';
23
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
24
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
25
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
26
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,25 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Traditional Chinese Version
5
+ * @author liqwei <liqwei@liqwei.com>
6
+ */
7
+
8
+ $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登錄失敗。';
9
+ $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連接到 SMTP 主機。';
10
+ $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:數據不被接受。';
11
+ //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
12
+ $PHPMAILER_LANG['encoding'] = '未知編碼: ';
13
+ $PHPMAILER_LANG['file_access'] = '無法訪問文件:';
14
+ $PHPMAILER_LANG['file_open'] = '文件錯誤:無法打開文件:';
15
+ $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:';
16
+ $PHPMAILER_LANG['execute'] = '無法執行:';
17
+ $PHPMAILER_LANG['instantiate'] = '未知函數調用。';
18
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
19
+ $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。';
20
+ $PHPMAILER_LANG['mailer_not_supported'] = '發信客戶端不被支持。';
21
+ $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:收件人地址錯誤:';
22
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
23
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
24
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
25
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,25 @@
1
+ <?php
2
+ /**
3
+ * PHPMailer language file: refer to English translation for definitive list
4
+ * Simplified Chinese Version
5
+ * @author liqwei <liqwei@liqwei.com>
6
+ */
7
+
8
+ $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。';
9
+ $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。';
10
+ $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。';
11
+ //$P$PHPMAILER_LANG['empty_message'] = 'Message body empty';
12
+ $PHPMAILER_LANG['encoding'] = '未知编码: ';
13
+ $PHPMAILER_LANG['execute'] = '无法执行:';
14
+ $PHPMAILER_LANG['file_access'] = '无法访问文件:';
15
+ $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:';
16
+ $PHPMAILER_LANG['from_failed'] = '发送地址错误:';
17
+ $PHPMAILER_LANG['instantiate'] = '未知函数调用。';
18
+ //$PHPMAILER_LANG['invalid_address'] = 'Not sending, email address is invalid: ';
19
+ $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。';
20
+ $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。';
21
+ $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:';
22
+ //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
23
+ //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
24
+ //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
25
+ //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
@@ -0,0 +1,10 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <title>Email test</title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6
+ </head>
7
+ <body>
8
+ <p>Here is a test HTML email</p>
9
+ </body>
10
+ </html>