Commit Graph

126 Commits

Author SHA1 Message Date
KafamaG
78b728a531 Merge branch 'master' into dev/translation_tr
#2829 landed on master and touched 173 of the same keys this branch
rewrites, which is where the conflicts came from.

Resolved by rule rather than by hand: for any key #2829 already fixed
and merged, master's value wins (54 keys); everything else keeps this
branch's version. That keeps the diff against master limited to what is
genuinely new here, and avoids re-editing work that is already upstream.

It also avoids a regression. This branch was cut before #2829, so it
still carried the old double-encoded UTF-8 in nine mailboxes strings
(confirm_warnallf, left_autoreply, left_folders, left_forward,
left_pass, left_sig, mail_fromfilter, mail_selread, mail_subfilter).
Taking master's value for those keeps them fixed. A mojibake scan over
the whole tree after the merge reports 0 remaining lines.

master also added acl/forgot_sudouser, which is translated here, so
lang/tr is still complete at 31,523 of 31,523 keys.
2026-08-31 09:51:50 +03:00
KafamaG
35069d3018 Fix placeholder, markup and encoding defects in existing Turkish files
A consistency check of every lang/tr against its lang/en turned up 58
lines that were wrong independently of the missing translations. All of
them are fixed here:

Missing or wrong $N placeholders (the value silently disappears from
the message at runtime, or the wrong value is shown):
  acl/cert_eca, acl/hide_desc, adsl-client/index_stopdesc,
  apache/reconfig_ever, apache/log_files, apache/log_files_l,
  bind8/log_manual, dhcpd/listl_lfnotcont, fdisk/mkfs_desc1,
  fdisk/fsck_desc1, fdisk/tunefs_desc, hpuxexports/save_ehost,
  inittab/log_rename, mysql/index_ever, mysql/index_version,
  mysql/log_perm_create, mysql/log_perm_delete, mysql/log_perm_modify,
  sendmail/index_epath, sendmail/index_startmsg, sendmail/asave_ematch,
  sendmail/mailers_efile, sendmail/generics_efile,
  webalizer/index_ewebalizer, webalizer/index_econf

  cron/env_ename carried a $1 that lang/en does not have, and its text
  described a different error than the key means.

  adsl-client/index_stopdesc and inittab/log_rename each repeated $1
  where $2 was meant, so both values printed the same string.

HTML markup that did not match lang/en:
  bind8/mass_desc, dhcpd/index_dhcpdnotfound, firewall/index_existing,
  inetd/index_applymsg, mysql/index_nomod, mysql/index_nomods,
  samba/esync_msg, samba/viewu_list, sendmail/trusts_desc,
  sendmail/mailers_desc2, sendmail/domains_desc, squid/clear_msgclear,
  status/proc_thresh

  Several of these were also truncated mid-sentence, dropping a whole
  sentence of the original text; those are now translated in full.

Encoding:
  mailboxes/confirm_warnf was stored as double-encoded UTF-8 and
  displayed as mojibake. It also used $1 twice instead of $1 and $2.

Trailing whitespace:
  proc/kill_term, kill_hup, kill_stop, kill_cont

Untranslated strings:
  fdisk/select_* device descriptions, mount/irix_mode0, irix_mode0cd,
  shorewall/tunnels_ipsec:noah

  bind8/mass_desc previously translated the literal configuration
  keywords master, slave, stub and forward into Turkish; they are now
  left in English, since they are values the user has to type.
2026-08-30 14:34:56 +03:00
KafamaG
377a418d81 Complete the Turkish translation of the remaining eleven modules
With this change every module has a complete lang/tr and no lang/tr.auto
files are left in the tree:

  mount          92 new strings - Linux/FreeBSD/IRIX mount options
  bandwidth      83 strings - bandwidth monitoring and reports
  mailboxes      78 new strings - attachments, iCal, HTML composer
  firewall       76 new strings - IPset, physdev, chain rename and move
  gray-theme     72 strings - theme layout and system information page
  fdisk          72 new strings - parted, NVME, partition table format
  servers        71 new strings - automatic server discovery
  stunnel        69 strings - SSL tunnels via inetd/xinetd
  cron           68 new strings - crond control and manual editing
  custom         63 new strings - SQL commands and output formats
  cluster-copy   62 strings - scheduled file copies across servers

firewall/move_chain reads "Current change" in lang/en where "Current
chain" is clearly meant; it is translated by intent as "Mevcut zincir".

Command and format names that appear verbatim in configuration files
(parted, fdisk, hdparm, SMART, GPT, MS-DOS, NVME, tmpfs, CIFS, NFSv4,
inetd, xinetd, crond, IPset, physdev, TCP-wrappers) stay in English.
2026-08-30 14:31:39 +03:00
KafamaG
666ff552fa Fix errors in Turkish (tr) language files
Corrects verifiable defects in the shipped Turkish translations across
25 modules. No .auto (machine-translated) files are touched.

Placeholder bugs (33 keys) - substitution variables were missing,
duplicated or renumbered relative to lang/en:

* fdisk/mkfs_desc1 used $1 twice, so the "all data will be permanently
  erased" confirmation named the filesystem type instead of the target
  device.
* apache/reconfig_ever linked to <a href='$1'> instead of $2, pointing
  the "module configuration" link at the version string.
* useradmin/export_eopen contained the Perl special variable $! rather
  than $1.
* adsl-client/index_stopdesc, inittab/log_rename, hpuxexports/save_ehost,
  mysql/log_perm_* and others repeated $1 where $2/$3 was intended.
* cron/env_ename referenced $1, which lang/en does not provide.

HTML markup bugs (19 keys) - tags were dropped or swapped, breaking
rendering or links:

* useradmin/batch_desc6 and batch_desc3 contained the literal strings
  "$batch_desc1" and "$batch_desc0" and rendered as plain text.
* bind8/mass_desc translated the literal named.conf keywords master,
  slave, stub and forward, which would lead users to enter invalid
  configuration values. These are now left untranslated.
* mysql/index_nomod, samba/esync_msg, squid/clear_msgclear and others
  lost <tt>/<b> pairs present in lang/en.

Encoding (10 keys) - mailboxes/lang/tr contained double-encoded UTF-8
(mojibake), e.g. "klasöründen" instead of "klasöründen".

Untranslated strings (96 keys) - htaccess-htpasswd/lang/tr was a verbatim
copy of lang/en and is now fully translated. Remaining English strings in
fdisk, mount, shorewall, webalizer, xinetd and firewall are translated.
Technical identifiers (LVM VG/LV, IPsec AH) are deliberately kept in
English.

All modified files are valid UTF-8, keep their original key order and
line count, and their placeholders now match lang/en exactly.
2026-08-30 01:20:42 +03:00
Ilia Ross
f880192526 Remove languages with 0% coverage
https://github.com/webmin/webmin/issues/2403#issuecomment-2652613588
2025-02-12 13:19:49 +02:00
MacSteini
162206949f Consecutive Spaces Replacement
Replaced multiple consecutive spaces with a single space
2024-12-16 16:57:09 +00:00
MacSteini
5ea0cc6b42 Trailing Spaces Removal
Removed trailing spaces
2024-12-16 15:16:55 +00:00
MacSteini
64598e5f39 Blanks Removal
Removed blanks before or after the equal sign
2024-12-16 12:59:19 +00:00
MacSteini
477982776c Updated de
Corrections (UTF-8, new lines at file end), amendments, updates
2024-11-26 01:43:34 +00:00
MacSteini
261ff535e0 Updated de 2024-09-07 12:46:38 +01:00
iliajie
9d0ceb6e00 Update translations 2022-09-15 22:50:24 +03:00
iliajie
5ea16f73b0 Handle the case when mode is set to fdisk and parted installed 2022-07-23 15:43:58 +03:00
iliajie
c984f3b57f Fix to display GPT with fdisk but don't edit 2022-07-23 15:04:31 +03:00
Ilia Rostovtsev
0462945632 Update translations 3/3 2021-11-18 22:13:17 +03:00
Ilia Rostovtsev
4c4b647096 Fix to add extra line breaks (sections) to language files 2020-12-27 21:15:36 +03:00
ljdj
6acbd7b653 Update fr
Complete and indented translation in French
2020-12-25 18:46:21 +01:00
Jamie Cameron
c6345ec1e9 Norwegian translation update from Stein-Askel Basma 2020-12-06 11:00:27 -08:00
Ilia Rostovtsev
fafc6ed2b5 Drop useless empty files /2 2020-04-29 23:25:40 +03:00
Ilia Rostovtsev
ee56777e6d Drop useless empty files 2020-04-29 23:17:45 +03:00
Ilia Rostovtsev
8b40bed018 Fix to escape HTML entities as designed on template language (en)
Note: Large diff for most files is due to sorting lines as in template languge file (English)
2020-04-14 01:34:18 +03:00
Ilia Rostovtsev
cb4f274057 Fix translator errors: 1 USD -> 2020-03-27 20:46:29 +03:00
Ilia Rostovtsev
9a593e912b Fix post-translation bugs /8 2020-03-13 13:48:45 +03:00
Ilia Rostovtsev
bca9a1f494 Fix post-translate errors 2020-03-08 23:03:33 +03:00
Ilia Rostovtsev
9c8e8117ac Add transcoding/translation for fdisk module of 한국어 (ko) 2020-03-08 08:26:35 +03:00
Ilia Rostovtsev
bec3c9985e Add transcoding/translation for fdisk module of 日本語 (ja) 2020-03-08 08:25:52 +03:00
Ilia Rostovtsev
577d5f2e9d Add transcoding/translation for fdisk module of 中文 (繁體) (zh_TW) 2020-03-08 08:25:08 +03:00
Ilia Rostovtsev
a27224f66a Add transcoding/translation for fdisk module of 中文 (简体) (zh) 2020-03-08 08:24:11 +03:00
Ilia Rostovtsev
bcb57c282f Add transcoding/translation for fdisk module of ไทย (th) 2020-03-08 08:23:35 +03:00
Ilia Rostovtsev
8facb5c659 Add transcoding/translation for fdisk module of فارسی (fa) 2020-03-08 08:21:39 +03:00
Ilia Rostovtsev
ab3ac2da99 Add transcoding/translation for fdisk module of العربية (ar) 2020-03-08 08:19:44 +03:00
Ilia Rostovtsev
0c04a7c949 Add transcoding/translation for fdisk module of اردو (ur) 2020-03-08 08:17:45 +03:00
Ilia Rostovtsev
7303a99b1e Add transcoding/translation for fdisk module of עברית (he) 2020-03-08 08:15:54 +03:00
Ilia Rostovtsev
1d8e98845f Add transcoding/translation for fdisk module of українська (uk) 2020-03-08 08:13:56 +03:00
Ilia Rostovtsev
a022fae9c8 Add transcoding/translation for fdisk module of русский (ru) 2020-03-08 08:13:24 +03:00
Ilia Rostovtsev
e240ecd74e Add transcoding/translation for fdisk module of български (bg) 2020-03-08 08:13:10 +03:00
Ilia Rostovtsev
07a1e04afa Add transcoding/translation for fdisk module of беларуская (be) 2020-03-08 08:13:10 +03:00
Ilia Rostovtsev
4480546fdc Add transcoding/translation for fdisk module of Ελληνικά (el) 2020-03-08 08:11:13 +03:00
Ilia Rostovtsev
9c508da3a4 Add transcoding/translation for fdisk module of čeština (cs) 2020-03-08 08:08:50 +03:00
Ilia Rostovtsev
cf959e0da3 Add transcoding/translation for fdisk module of svenska (sv) 2020-03-08 08:08:36 +03:00
Ilia Rostovtsev
2bf397e2f7 Add transcoding/translation for fdisk module of suomi (fi) 2020-03-08 08:07:53 +03:00
Ilia Rostovtsev
88f5a0bda1 Add transcoding/translation for fdisk module of slovenščina (sl) 2020-03-08 08:05:56 +03:00
Ilia Rostovtsev
89b4d8f1e6 Add transcoding/translation for fdisk module of slovenčina (sk) 2020-03-08 08:03:58 +03:00
Ilia Rostovtsev
a93a64e28f Add transcoding/translation for fdisk module of română (ro) 2020-03-08 08:02:03 +03:00
Ilia Rostovtsev
4e3aead8ba Add transcoding/translation for fdisk module of português (Brasil) (pt_BR) 2020-03-08 08:00:04 +03:00
Ilia Rostovtsev
b8fc38c8d8 Add transcoding/translation for fdisk module of português (pt) 2020-03-08 07:58:18 +03:00
Ilia Rostovtsev
547a602d0e Add transcoding/translation for fdisk module of polski (pl) 2020-03-08 07:57:08 +03:00
Ilia Rostovtsev
cabaf37b19 Add transcoding/translation for fdisk module of norsk (no) 2020-03-08 07:56:27 +03:00
Ilia Rostovtsev
374fbc84fd Add transcoding/translation for fdisk module of magyar (hu) 2020-03-08 07:56:23 +03:00
Ilia Rostovtsev
130f45f5d4 Add transcoding/translation for fdisk module of lietuvių (lt) 2020-03-08 07:55:28 +03:00
Ilia Rostovtsev
b2a0e77d77 Add transcoding/translation for fdisk module of latviešu (lv) 2020-03-08 07:53:30 +03:00