Translate a few German comments to English
ClosedPublic

Authored by ognarb on May 10 2020, 9:49 PM.

Details

Diff Detail

Repository
R767 OCS Webserver
Branch
master
Lint
No Linters Available
Unit
No Unit Test Coverage
Build Status
Buildable 26664
Build 26682: arc lint + arc unit
ognarb requested review of this revision.May 10 2020, 9:49 PM
ognarb created this revision.
ognarb retitled this revision from Translate a few germand comments to english to Translate a few German comments to English.May 10 2020, 9:49 PM
ognarb added a reviewer: KDE Store.
cblack accepted this revision.May 10 2020, 9:53 PM
cblack added a subscriber: cblack.
cblack added inline comments.
application/modules/backend/controllers/HiveController.php
247

Successfully

252

Typo

application/modules/backend/views/scripts/legend.phtml
25

No 's

44

Gallery overview

61

Disable

This revision is now accepted and ready to land.May 10 2020, 9:53 PM
ognarb updated this revision to Diff 82470.May 10 2020, 9:55 PM
ognarb marked 5 inline comments as done.

Reflect comments

tfella added a subscriber: tfella.May 10 2020, 10:05 PM
tfella added inline comments.
application/modules/backend/controllers/HiveController.php
145

Typo

164

ffrom

177

ffrom

204

ffrom

application/modules/default/models/Collection.php
1867

I'm not sure if "can not be deleted" means that the product should not be deleted or that the code should not be deleted

ognarb updated this revision to Diff 82472.May 10 2020, 10:09 PM
ognarb marked 4 inline comments as done.
  • fix typos
ognarb marked an inline comment as done.May 10 2020, 10:12 PM
ognarb added inline comments.
application/modules/default/models/Collection.php
1867

The code return false if the condition is true: $result['count_comments'] >5 || $result['is_old'] ==1 || $result['plings']>0

The return code could also be simplified to just and it would be less confusing.

return $result['count_comments'] <=5 && $result['is_old'] !==1 && $result['plings'] <= 0;
ognarb marked an inline comment as done.May 24 2020, 3:57 PM

Ping

alexanderschmidt accepted this revision.May 25 2020, 8:44 AM
alexanderschmidt added a subscriber: alexanderschmidt.

Thank you. :-)

This revision was automatically updated to reflect the committed changes.