mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-05-03 18:40:19 -05:00
Merge pull request #101 from justinclift/renamev2
Renamed project to "DB Browser for SQLite"
This commit is contained in:
+2
-2
@@ -11,7 +11,7 @@
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>About Database Browser for SQLite</string>
|
||||
<string>About DB Browser for SQLite</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="icons/icons.qrc">
|
||||
@@ -116,7 +116,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string><html><head/><body><p>Database Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt"><span style=" text-decoration: underline; color:#0000ff;">https://www.mozilla.org/MPL/2.0/index.txt</span></a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html></string>
|
||||
<string><html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt"><span style=" text-decoration: underline; color:#0000ff;">https://www.mozilla.org/MPL/2.0/index.txt</span></a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html></string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ Application::Application(int& argc, char** argv) :
|
||||
{
|
||||
// Set organisation and application names
|
||||
setOrganizationName("sqlitebrowser");
|
||||
setApplicationName("Database Browser for SQLite");
|
||||
setApplicationName("DB Browser for SQLite");
|
||||
|
||||
// Set character encoding to UTF8
|
||||
QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));
|
||||
|
||||
+4
-4
@@ -202,7 +202,7 @@ bool MainWindow::fileOpen(const QString& fileName)
|
||||
setCurrentFile(wFile);
|
||||
retval = true;
|
||||
} else {
|
||||
// Failed opening file; so it might be a SQLiteBrowser project file
|
||||
// Failed opening file; so it might be a project file instead
|
||||
return loadProject(wFile);
|
||||
}
|
||||
loadExtensionsFromSettings();
|
||||
@@ -1376,7 +1376,7 @@ void MainWindow::httpresponse(QNetworkReply *reply)
|
||||
msgBox.addButton(QMessageBox::Ok);
|
||||
msgBox.setTextFormat(Qt::RichText);
|
||||
msgBox.setWindowTitle(tr("New version available."));
|
||||
msgBox.setText(tr("A new sqlitebrowser version is available (%1.%2.%3).<br/><br/>"
|
||||
msgBox.setText(tr("A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>"
|
||||
"Please download at <a href='%4'>%4</a>.").arg(major).arg(minor).arg(patch).
|
||||
arg(QString(reply->readLine()).trimmed()));
|
||||
msgBox.exec();
|
||||
@@ -1722,7 +1722,7 @@ bool MainWindow::loadProject(QString filename)
|
||||
filename = QFileDialog::getOpenFileName(this,
|
||||
tr("Choose a file to open"),
|
||||
QString(),
|
||||
tr("SQLiteBrowser project(*.sqbpro)"));
|
||||
tr("DB Browser for SQLite project file (*.sqbpro)"));
|
||||
}
|
||||
|
||||
if(!filename.isEmpty())
|
||||
@@ -1862,7 +1862,7 @@ void MainWindow::saveProject()
|
||||
QString filename = QFileDialog::getSaveFileName(this,
|
||||
tr("Choose a filename to save under"),
|
||||
QString(),
|
||||
tr("SQLiteBrowser project(*.sqbpro)")
|
||||
tr("DB Browser for SQLite project file (*.sqbpro)")
|
||||
);
|
||||
if(!filename.isEmpty())
|
||||
{
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>SQLiteBrowser</string>
|
||||
<string>DB Browser for SQLite</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="icons/icons.qrc">
|
||||
|
||||
+3
-3
@@ -26,7 +26,7 @@
|
||||
<string>sqbpro</string>
|
||||
</array>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>SQLiteBrowser Project</string>
|
||||
<string>DB Browser for SQLite Project</string>
|
||||
<key>CFBundleTypeOSTypes</key>
|
||||
<array>
|
||||
<string>****</string>
|
||||
@@ -52,7 +52,7 @@
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>@EXECUTABLE@</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Database Browser for SQLite</string>
|
||||
<string>DB Browser for SQLite</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>@ICON@</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
@@ -60,7 +60,7 @@
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Database Browser for SQLite</string>
|
||||
<string>DB Browser for SQLite</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
|
||||
Reference in New Issue
Block a user