I can not change in email the word "Autor" in german language file.
How can i change it?
Bye Jan
Error found - Digests
Re: Error found
If there is an issue with the German language translation, you should report it to its author, Praggle, who is monitoring his discussion. The language files are in the
/language/de
folder of the extension. His GitHub for this is at: https://github.com/Praggle/digests/releasesNeed phpBB services or a phpBB consultant? I offer most phpBB services. Getting lost managing phpBB? Buy my book, Mastering phpBB Administration. Covers through phpBB 3.3.7. eBook and paper versions available.
-
- Registered User
- Posts: 4933
- Joined: Fri Aug 02, 2002 12:36 am
- Location: Florence, MA USA
Re: Error found
Yes i know.
But look to this file:
Open
Search
In Line
Is Line 42 incorrect?
Bye Jan
But look to this file:
Open
mail_digests_html
and go to line 42
Search
<th>{{ lang('AUTHOR') }}</th>
... is this wrong?In Line
11
i see this <th>{{ lang('DIGESTS_AUTHOR') }}</th>
Is Line 42 incorrect?
Bye Jan
-
- Registered User
- Posts: 161
- Joined: Sun May 07, 2017 3:39 pm
Re: Error found
In the German language pack, casual honorifics, I see:
So it is translating it correctly, presumably as Google Translate gives the same translation:
https://translate.google.com/#view=home ... ext=Author
This is not an issue with the German translation for digests. These language strings are pulled from the official language translations for phpBB. Presumably whoever is getting this digest has their board configuration set to use German as their board language.
Code: Select all
'AUTHOR' => 'Autor',
https://translate.google.com/#view=home ... ext=Author
This is not an issue with the German translation for digests. These language strings are pulled from the official language translations for phpBB. Presumably whoever is getting this digest has their board configuration set to use German as their board language.
Need phpBB services or a phpBB consultant? I offer most phpBB services. Getting lost managing phpBB? Buy my book, Mastering phpBB Administration. Covers through phpBB 3.3.7. eBook and paper versions available.
-
- Registered User
- Posts: 4933
- Joined: Fri Aug 02, 2002 12:36 am
- Location: Florence, MA USA
Re: Error found
I found the mistake.
The change was not transferred in the testmailer function.
After using the Mailer Reset function and the change in the file
After sending the e-mail at the specified time, the correct translation that was saved in the language file
Thanks for help

The change was not transferred in the testmailer function.

After using the Mailer Reset function and the change in the file
mail_digests_html
line 42 from <th>{{ lang('AUTHOR') }}</th>
to <th>{{ lang('DIGESTS_AUTHOR') }}</th>
, the translation I saved appears.After sending the e-mail at the specified time, the correct translation that was saved in the language file
/new/ext/phpbbservices/digests/language/de/common.php
line 25 in advance is now also displayed.Thanks for help

-
- Registered User
- Posts: 161
- Joined: Sun May 07, 2017 3:39 pm
Re: Error found
In English,
and in the English translation for digests in
So my addition to
/language/en/common.php
has:Code: Select all
'AUTHOR' => 'Author',
/ext/phpbbservices/digests/language/en/common.php
there is also:Code: Select all
'DIGESTS_AUTHOR' => 'Author',
/ext/phpbbservices/digests/language/en/common.php
is actually redundant. I should remove this language string in future versions and change templates like the one you noticed to use the common language variable.Need phpBB services or a phpBB consultant? I offer most phpBB services. Getting lost managing phpBB? Buy my book, Mastering phpBB Administration. Covers through phpBB 3.3.7. eBook and paper versions available.
-
- Registered User
- Posts: 4933
- Joined: Fri Aug 02, 2002 12:36 am
- Location: Florence, MA USA