~widelands-dev/widelands/trunk

« back to all changes in this revision

Viewing changes to src/wui/load_or_save_game.cc

  • Committer: The Widelands Bunnybot
  • Date: 2024-10-19 13:45:54 UTC
  • Revision ID: bunnybot@widelands.org-20241019134554-kz2gcbecf0y7bd7n
170 files were automatically formatted.

(by bunnybot)
5a9087b08ab9bbc48795ff0f7f1f370f60108b1a

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
        if (nr_of_selected_items == 1) {
178
178
                delete_->set_tooltip(
179
179
                   filetype_ == FileType::kReplay ?
180
 
            /** TRANSLATORS: Tooltip for the delete button. The user has selected 1 file */
181
 
            _("Delete this replay") :
182
 
            /** TRANSLATORS: Tooltip for the delete button. The user has selected 1 file */
183
 
            _("Delete this game"));
 
180
                      /** TRANSLATORS: Tooltip for the delete button. The user has selected 1 file */
 
181
                      _("Delete this replay") :
 
182
                      /** TRANSLATORS: Tooltip for the delete button. The user has selected 1 file */
 
183
                      _("Delete this game"));
184
184
        } else if (nr_of_selected_items > 1) {
185
185
                delete_->set_tooltip(filetype_ == FileType::kReplay ?
186
 
                                 /** TRANSLATORS: Tooltip for the delete button. The user has
187
 
                                    selected multiple files */
188
 
                                 _("Delete these replays") :
189
 
                                 /** TRANSLATORS: Tooltip for the delete button. The user has
190
 
                                    selected multiple files */
191
 
                                 _("Delete these games"));
 
186
                                        /** TRANSLATORS: Tooltip for the delete button. The user has
 
187
                                           selected multiple files */
 
188
                                        _("Delete these replays") :
 
189
                                           /** TRANSLATORS: Tooltip for the delete button. The user has
 
190
                                              selected multiple files */
 
191
                                           _("Delete these games"));
192
192
        } else {
193
193
                delete_->set_tooltip("");
194
194
        }