[apps] Renamen MemoryFull i18N messages

This commit is contained in:
Léa Saviot
2018-10-26 14:19:08 +02:00
committed by Émilie Feral
parent 5647f0577f
commit ecb58dea71
6 changed files with 14 additions and 14 deletions

View File

@@ -235,7 +235,7 @@ void AppsContainer::run() {
}
switchTo(appSnapshotAtIndex(0));
Poincare::Tidy();
activeApp()->displayWarning(I18n::Message::AppMemoryFull, true);
activeApp()->displayWarning(I18n::Message::PoolMemoryFull, true);
}
Container::run();
switchTo(nullptr);
@@ -302,7 +302,7 @@ void AppsContainer::storageDidChangeForRecord(const Ion::Storage::Record record)
void AppsContainer::storageIsFull() {
if (activeApp()) {
activeApp()->displayWarning(I18n::Message::GlobalMemoryFull, true);
activeApp()->displayWarning(I18n::Message::StorageMemoryFull, true);
}
}