Remove MatrixKitL10n from SwiftGen

Uses VectorL10n everywhere.
This commit is contained in:
Doug
2022-03-03 09:32:19 +00:00
parent 18bd0b861d
commit 86c2b4ebb5
97 changed files with 2492 additions and 2605 deletions
@@ -36,12 +36,12 @@
if (!title)
{
title = [MatrixKitL10n error];
title = [VectorL10n error];
}
if (!message)
{
message = [MatrixKitL10n errorCommonMessage];
message = [VectorL10n errorCommonMessage];
}
return [[MXKErrorViewModel alloc] initWithTitle:title message:message];
@@ -49,8 +49,8 @@
- (id <MXKErrorPresentable>)commonErrorPresentable
{
return [[MXKErrorViewModel alloc] initWithTitle:[MatrixKitL10n error]
message:[MatrixKitL10n errorCommonMessage]];
return [[MXKErrorViewModel alloc] initWithTitle:[VectorL10n error]
message:[VectorL10n errorCommonMessage]];
}
@end