diff options
author | msquare <msquare@notrademark.de> | 2017-12-19 19:17:50 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-12-19 19:17:50 +0100 |
commit | 567ed9ebd2603a5deb9c171b4d969f7188414794 (patch) | |
tree | 43665c721e7aa9b4b20a75e11e6eecb72427ae0b /includes | |
parent | b60ad7ccfb7dff80728653ea4713bb7d389bc101 (diff) |
remove flags since they do not belong to language selection
Diffstat (limited to 'includes')
-rw-r--r-- | includes/controller/shift_entries_controller.php | 2 | ||||
-rw-r--r-- | includes/helper/internationalization_helper.php | 7 |
2 files changed, 3 insertions, 6 deletions
diff --git a/includes/controller/shift_entries_controller.php b/includes/controller/shift_entries_controller.php index d9813ebc..c28a3e9c 100644 --- a/includes/controller/shift_entries_controller.php +++ b/includes/controller/shift_entries_controller.php @@ -123,7 +123,7 @@ function shift_entry_add_controller() 'SELECT `id` FROM `ShiftEntry` WHERE `SID`= ? AND `UID` = ?', [$shift['SID'], $user_id])) ) { - return error('This angel does already have an entry for this shift.', true); + return error(_('This angel does already have an entry for this shift.'), true); } $freeloaded = isset($shift['freeloaded']) ? $shift['freeloaded'] : false; diff --git a/includes/helper/internationalization_helper.php b/includes/helper/internationalization_helper.php index 7fa6518b..01aca71f 100644 --- a/includes/helper/internationalization_helper.php +++ b/includes/helper/internationalization_helper.php @@ -72,11 +72,8 @@ function make_langselect() $items[] = toolbar_item_link( htmlspecialchars($url), '', - sprintf( - '<img src="%s" alt="%s" title="%2$s"> %2$s', - url('pic/flag/' . $locale . '.png'), - $name - ) + $name, + $locale == locale() ); } return $items; |