2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Use tr:: instead of langFactory and __rich.

This commit is contained in:
John Preston
2019-06-18 18:53:27 +02:00
parent d1d98c3bb1
commit a7c8feaecb
103 changed files with 699 additions and 628 deletions

View File

@@ -133,7 +133,7 @@ void EditPrivacyBox::editExceptions(
exceptions(exception));
auto initBox = [=, controller = controller.get()](
not_null<PeerListBox*> box) {
box->addButton(langFactory(lng_settings_save), crl::guard(this, [=] {
box->addButton(tr::lng_settings_save(), crl::guard(this, [=] {
exceptions(exception) = controller->getResult();
const auto type = [&] {
switch (exception) {
@@ -151,7 +151,7 @@ void EditPrivacyBox::editExceptions(
done();
box->closeBox();
}));
box->addButton(langFactory(lng_cancel), [=] { box->closeBox(); });
box->addButton(tr::lng_cancel(), [=] { box->closeBox(); });
};
Ui::show(
Box<PeerListBox>(std::move(controller), std::move(initBox)),
@@ -354,7 +354,7 @@ void EditPrivacyBox::setupContent() {
content->add(std::move(below));
}
addButton(langFactory(lng_settings_save), [=] {
addButton(tr::lng_settings_save(), [=] {
const auto someAreDisallowed = (_value.option != Option::Everyone)
|| !_value.never.empty();
_controller->confirmSave(someAreDisallowed, crl::guard(this, [=] {
@@ -364,7 +364,7 @@ void EditPrivacyBox::setupContent() {
closeBox();
}));
});
addButton(langFactory(lng_cancel), [this] { closeBox(); });
addButton(tr::lng_cancel(), [this] { closeBox(); });
const auto linkHeight = st::settingsButton.padding.top()
+ st::settingsButton.height