Skip to content
This repository has been archived by the owner on Sep 17, 2021. It is now read-only.

Commit

Permalink
Few more strings update
Browse files Browse the repository at this point in the history
  • Loading branch information
Surendrajat committed Mar 5, 2018
1 parent 032f943 commit d8cc9e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
#define THREADS_MAX 1

#define URL_CONTRIBUTE "https://github.com/surendrajat/apkstudio"
#define URL_DOCUMENTATION "http://surendrajat.github.io/apkstudio"
#define URL_DOCUMENTATION "http://surendrajat.github.io/ApkStudio"
#define URL_ISSUES "https://github.com/surendrajat/apkstudio/issues"
#define URL_THANKS "http://forum.xda-developers.com/showthread.php?t=2493107"

Expand Down
4 changes: 2 additions & 2 deletions res/html/about.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p>APK Studio is a open-source and cross-platform IDE for reverse-engineering Android applications. Written using <a href="http://www.qt.io/">Qt</a> framework, it is collaboratively developed by <a href="http://www.vaibhavpandey.com/">Vaibhav Pandey</a> along with other contributor(s).</p>
<p>APK Studio is a open-source and cross-platform IDE for reverse-engineering Android applications. Written using <a href="http://www.qt.io/">Qt</a> framework, it is collaboratively developed by <a href="http://www.vaibhavpandey.com/">Vaibhav Pandey</a> along with other contributor(s) and currently maintained and developed by <a href="https://surendrajat.github.io/">Surendra Kumar</a> and contributors.</p>
<p>The main aim of this project is to provide ROM makers with the ease of GUI for customization of pre-packaged applications and Android system. The source code for this application is hosted at <a href="http://surendrajat.github.io/ApkStudio">Github</a>.</p>
<p>Copyright (c) 2015 Vaibhav Pandey and contributor(s)</p>
<p>Copyright (c) 2018 Contributers</p>
<p>Copyright (c) 2018 Surendra Kumar and Contributers</p>
2 changes: 1 addition & 1 deletion res/lang/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@
</message>
<message>
<source>app_version</source>
<translation><![CDATA[<strong>APK Studio</strong> <a href="https://github.com/surendrajat/apkstudio/tree/%2">%1</a>]]></translation>
<translation><![CDATA[<strong>APK Studio</strong> v4.0]]></translation>
</message>
<message>
<source>no_apk</source>
Expand Down
2 changes: 1 addition & 1 deletion src/ide.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ void Ide::onMenuBarHelpAbout()
QMessageBox box;
box.setIconPixmap(Qrc::image("logo"));
box.setInformativeText(FileUtils::read(QString(QRC_HTML).arg("about")));
box.setText(__("app_version", "messages", APP_REV_SHORT, APP_REV_LONG));
box.setText(__("app_version", "messages"));
box.setWindowIcon(Qrc::icon("dialog_about"));
box.setWindowTitle(__("about", "titles"));
box.exec();
Expand Down

0 comments on commit d8cc9e7

Please sign in to comment.