[python] Change app name and icon

Change-Id: I0c505d08a464d63200bd5e1e0dc81825632691e5
This commit is contained in:
Émilie Feral
2017-08-09 16:41:00 +02:00
parent 68cd3f4574
commit bb5523b747
6 changed files with 15 additions and 4 deletions

View File

@@ -1,15 +1,20 @@
#include "app.h"
#include "../apps_container.h"
#include "code_icon.h"
#include <assert.h>
namespace Code {
I18n::Message App::Descriptor::name() {
return I18n::Message::Matrices;
return I18n::Message::CodeApp;
}
I18n::Message App::Descriptor::upperName() {
return I18n::Message::Matrices;
return I18n::Message::CodeAppCapital;
}
const Image * App::Descriptor::icon() {
return ImageStore::CodeIcon;
}
App * App::Snapshot::unpack(Container * container) {