GUI: Additional translation entries

A few more items:
Standardising on 'OK' for all base language uses (rather than 'Ok', or 'Okay').
It's perceived as the 'most correct' variant, and importantly having a single variant is best from a translation perspective.

Added plurality handling for multiple PPU caches created.

Added plurality handling for multiple items deleted in save manager.

Capitalised trophy grade to align with Sony terminology.
Brought trophy name position into translatable string (for languages that might really want to deviate from SVO)
This commit is contained in:
Bevan Weiss 2020-09-03 17:48:48 +10:00 committed by Megamouse
parent 2688081656
commit e1adb18491
7 changed files with 12 additions and 12 deletions

View file

@ -478,7 +478,7 @@ void debugger_frame::ShowGotoAddressDialog()
expression_input->setFixedWidth(190);
// Ok/Cancel
QPushButton* button_ok = new QPushButton(tr("Ok"));
QPushButton* button_ok = new QPushButton(tr("OK"));
QPushButton* button_cancel = new QPushButton(tr("Cancel"));
hbox_address_preview_panel->addWidget(address_preview_label);