codeigniter4 / translations

System message translations for CodeIgniter4
https://codeigniter4.github.io/translations/
MIT License
197 stars 206 forks source link

German translation of Pager is mixed up #132

Closed sfadschm closed 3 years ago

sfadschm commented 3 years ago

In the German (de) file for Pager.php the values of previous and last are mixed up.

Current implementation:

'first'                  => 'Erste',
'previous'               => 'Letzte',
'next'                   => 'Weiter',
'last'                   => 'Zurück',

Corrected:

'first'                  => 'Erste',
'previous'               => 'Zurück',
'next'                   => 'Weiter',
'last'                   => 'Letzte',
lonnieezell commented 3 years ago

Please submit a PR.

sba commented 3 years ago

I submitted the pull request https://github.com/codeigniter4/translations/pull/134

sfadschm commented 3 years ago

I submitted the pull request

134

Thanks, should I close mine or will it automatically be closed?

sba commented 3 years ago

I think you can close this issue - not sure if it closes automatically...

sfadschm commented 3 years ago

Closing, as pull request is not linked here, so likely no automatic closing.