Skip to content

Commit e20bbd5

Browse files
committedFeb 4, 2017
translation string fixes
1 parent 4a38713 commit e20bbd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/gui/qgsnewhttpconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ void QgsNewHttpConnection::accept()
216216
if ( !txtPassword->text().isEmpty() &&
217217
QMessageBox::question( this,
218218
tr( "Saving passwords" ),
219-
tr( "WARNING: You have entered a password. It will be stored in unsecured plain text in your project files and your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't provide a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
219+
trUtf8( "WARNING: You have entered a password. It will be stored in unsecured plain text in your project files and your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't provide a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
220220
QMessageBox::Ok | QMessageBox::Cancel ) == QMessageBox::Cancel )
221221
{
222222
return;

‎src/providers/postgres/qgspgnewconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void QgsPgNewConnection::accept()
115115
if ( !hasAuthConfigID && chkStorePassword->isChecked() &&
116116
QMessageBox::question( this,
117117
tr( "Saving passwords" ),
118-
tr( "WARNING: You have opted to save your password. It will be stored in unsecured plain text in your project files and in your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't save a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
118+
trUtf8( "WARNING: You have opted to save your password. It will be stored in unsecured plain text in your project files and in your home directory (Unix-like OS) or user profile (Windows). If you want to avoid this, press Cancel and either:\n\na) Don't save a password in the connection settings — it will be requested interactively when needed;\nb) Use the Configuration tab to add your credentials in an HTTP Basic Authentication method and store them in an encrypted database." ),
119119
QMessageBox::Ok | QMessageBox::Cancel ) == QMessageBox::Cancel )
120120
{
121121
return;

0 commit comments

Comments
 (0)
Please sign in to comment.