Skip to content

Commit

Permalink
Update i18n for 7.0.7 (haiwen#1281)
Browse files Browse the repository at this point in the history
* translate delete sync error action

* Update i18n
  • Loading branch information
sun20121818 authored Apr 1, 2020
1 parent 58ab3b1 commit d7c0210
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions i18n/seafile_bg_BG.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3128,6 +3128,10 @@ File path contains invalid characters. It is not synced to this computer.</sourc
<source>Delete file sync error failed</source>
<translation type="unfinished"/>
</message>
<message>
<source>delete</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>TwoFactorDialog</name>
Expand Down
4 changes: 4 additions & 0 deletions i18n/seafile_en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3130,6 +3130,10 @@ File path contains invalid characters. It is not synced to this computer.</sourc
<source>Delete file sync error failed</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>delete</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>TwoFactorDialog</name>
Expand Down
4 changes: 4 additions & 0 deletions i18n/seafile_et_EE.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3128,6 +3128,10 @@ File path contains invalid characters. It is not synced to this computer.</sourc
<source>Delete file sync error failed</source>
<translation type="unfinished"/>
</message>
<message>
<source>delete</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>TwoFactorDialog</name>
Expand Down
4 changes: 4 additions & 0 deletions i18n/seafile_zh_CN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3147,6 +3147,10 @@ File path contains invalid characters. It is not synced to this computer.</sourc
<source>Delete file sync error failed</source>
<translation>删除文件同步错误失败</translation>
</message>
<message>
<source>delete</source>
<translation>删除</translation>
</message>
</context>
<context>
<name>TwoFactorDialog</name>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/sync-errors-dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ void SyncErrorsTableView::onDeleteFileAsyncError()
void SyncErrorsTableView::createContextMenu()
{
context_menu_ = new QMenu(this);
delete_action_ = new QAction("delete", this);
delete_action_ = new QAction(tr("delete"), this);
context_menu_->addAction(delete_action_);
connect(delete_action_, SIGNAL(triggered()), this, SLOT(onDeleteFileAsyncError()));
}
Expand Down

0 comments on commit d7c0210

Please sign in to comment.