Merge branch 'master' of github.com:dignajar/bludit

This commit is contained in:
Diego Najar 2019-02-08 08:53:37 +01:00
commit efacadf46c
3 changed files with 14 additions and 17 deletions

View File

@ -2,12 +2,10 @@
"language-data": {
"native": "Nederlands",
"english-name": "Dutch",
"last-update": "25-01-2019",
"last-update": "04-02-2019",
"authors": [
"Ray",
"ltGuillaume",
"",
""
"ltGuillaume"
]
},
"dates": {
@ -334,7 +332,7 @@
"the-nickname-is-almost-used-in-the-themes-to-display-the-author-of-the-content": "De roepnaam wordt gebruikt door thema's om de auteur van de inhoud weer te geven",
"allow-unicode": "Unicode toestaan",
"allow-unicode-characters-in-the-url-and-some-part-of-the-system": "Sta Unicode-tekens toe in de URL en enkele andere onderdelen van het systeem.",
"variables-allowed": "Variabelen toegestaan",
"variables-allowed": "Ondersteunde variabelen",
"tag": "Tag",
"drag-and-drop-to-sort-the-plugins": "Plugins sorten met slepen.",
"seo": "SEO",
@ -376,6 +374,6 @@
"thumbnail-width-in-pixels": "Breedte voorbeelden in pixels (px).",
"thumbnail-height-in-pixels": "Hoogte voorbeelden in pixels (px).",
"thumbnail-quality-in-percentage": "Kwaliteit voorbeelden in procenten (%).",
"maximum-load-file-size-allowed:": "Maximum load file size allowed:",
"file-type-is-not-supported": "File type is not supported. Allowed types:"
}
"maximum-load-file-size-allowed:": "Maximale bestandsgrootte voor uploads:",
"file-type-is-not-supported": "Dit bestandstype is niet toegestaan. Wel toegestaan zijn:"
}

View File

@ -3,10 +3,9 @@
"native": "Türkçe",
"english-name": "Turkish",
"locale": "tr, tr_TR",
"last-update": "2018-12-02",
"last-update": "2018-02-06",
"authors": [
"Ali Demirtas",
"guleyc",
"",
"",
""
@ -378,6 +377,6 @@
"thumbnail-width-in-pixels": "Piksel olarak küçük resim genişliği (px).",
"thumbnail-height-in-pixels": "Piksel olarak küçük resim yüksekliği (px).",
"thumbnail-quality-in-percentage": "Yüzde olarak küçük resim kalitesi (%).",
"maximum-load-file-size-allowed:": "Maximum load file size allowed:",
"file-type-is-not-supported": "File type is not supported. Allowed types:"
}
"maximum-load-file-size-allowed:": "İzin verilen en yüksek dosya yükleme boyutu:",
"file-type-is-not-supported": "Dosya türü desteklenmiyor. İzin verilen türler:"
}

View File

@ -54,7 +54,7 @@ class pluginBackup extends Plugin {
}
$html .= '<div>';
$html .= '<button name="createBackup" value="true" class="btn btn-primary" type="submit"><span class="oi oi-play-circle"></span> '.$L->get('create-backup').'</button>';
$html .= '<button name="createBackup" value="true" class="btn btn-primary btn-sm" type="submit"><span class="oi oi-play-circle"></span> '.$L->get('create-backup').'</button>';
$html .= '</div>';
$html .= '<hr>';
@ -66,10 +66,10 @@ class pluginBackup extends Plugin {
$html .= '<h4 class="font-weight-normal">'.Date::format($filename, BACKUP_DATE_FORMAT, 'F j, Y, g:i a').'</h4>';
// Allow download if a zip file
if ($this->zip) {
$html .= '<a class="btn btn-secondary mr-3" href="'.DOMAIN_CONTENT.'workspaces/backup/'.$filename.'.zip"><span class="oi oi-data-transfer-download"></span> '.$L->get('download').'</a>';
$html .= '<a class="btn btn-outline-secondary btn-sm mr-1 mt-1" href="'.DOMAIN_CONTENT.'workspaces/backup/'.$filename.'.zip"><span class="oi oi-data-transfer-download"></span> '.$L->get('download').'</a>';
}
$html .= '<button name="restoreBackup" value="'.$filename.'" class="btn btn-secondary mr-3" type="submit"><span class="oi oi-timer"></span> '.$L->get('restore-backup').'</button>';
$html .= '<button name="deleteBackup" value="'.$filename.'" class="btn btn-secondary mr-3" type="submit"><span class="oi oi-delete"></span> '.$L->get('delete-backup').'</button>';
$html .= '<button name="restoreBackup" value="'.$filename.'" class="btn btn-outline-secondary btn-sm mr-1 mt-1" type="submit"><span class="oi oi-timer"></span> '.$L->get('restore-backup').'</button>';
$html .= '<button name="deleteBackup" value="'.$filename.'" class="btn btn-outline-danger btn-sm mr-1 mt-1" type="submit"><span class="oi oi-trash"></span> '.$L->get('delete-backup').'</button>';
$html .= '</div>';
$html .= '<hr>';
}