Skip to content

Commit

Permalink
Merge pull request #685 from subutai-io/fix
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
Erkin Matkaziev authored Mar 3, 2018
2 parents 3da0875 + d1e8e42 commit 07c47e2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions SubutaiControlCenter.pro
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ HEADERS += \
hub/include/HostMachineController.h \
hub/forms/DlgTransferFile.h

TRANSLATIONS = SubutaiTray_en_US.ts \
SubutaiTray_ru_RU.ts \
SubutaiTray_pt_BR.ts
TRANSLATIONS = SubutaiControlCenter_en_US.ts \
SubutaiControlCenter_ru_RU.ts \
SubutaiControlCenter_pt_BR.ts

FORMS += \
hub/forms/DlgLogin.ui \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions commons/src/OsBranchConsts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ template<class BR> const QString& hub_kurjun_url_temp_internal();
return res; \
}

hub_kurjun_url_temp_internal_def(BT_PROD, "https://cdn.subutai.io:8338/kurjun/rest/%1&owner=jenkins")
hub_kurjun_url_temp_internal_def(BT_MASTER, "https://mastercdn.subutai.io:8338/kurjun/rest/%1&owner=jenkins")
hub_kurjun_url_temp_internal_def(BT_DEV, "https://devcdn.subutai.io:8338/kurjun/rest/%1&owner=jenkins")
hub_kurjun_url_temp_internal_def(BT_PROD, "https://cdn.subutai.io:8338/kurjun/rest/%1")
hub_kurjun_url_temp_internal_def(BT_MASTER, "https://mastercdn.subutai.io:8338/kurjun/rest/%1")
hub_kurjun_url_temp_internal_def(BT_DEV, "https://devcdn.subutai.io:8338/kurjun/rest/%1")

const QString &
hub_gorjun_url() {
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ main(int argc, char *argv[]) {

QTranslator translator;
QString locale = LanguageController::CurrentLocale();
translator.load(QString("SubutaiTray_%1.qm").arg(locale), QApplication::applicationDirPath());
translator.load(QString("SubutaiControlCenter_%1.qm").arg(locale), QApplication::applicationDirPath());
app.installTranslator(&translator);

qInstallMessageHandler(Logger::LoggerMessageOutput);
Expand Down

0 comments on commit 07c47e2

Please sign in to comment.