String changes

Making translations better by fixing typos and stuff
This commit is contained in:
Vojtěch Sajdl
2018-08-10 22:57:27 +02:00
parent d923a9b88c
commit fccc45d602
4 changed files with 14 additions and 13 deletions
+9
View File
@@ -1,4 +1,13 @@
<?php
//This should later be translatable, maybe find a better solution?
//This is here for better generation of POT files :)
$statuses = array(_("Major outage"), _("Minor outage"), _("Planned maintenance"), _("Operational") );
$classes = array("danger", "warning", "primary", "success" );
$icons = array("fa fa-times", "fa fa-exclamation", "fa fa-info", "fa fa-check" );
$some = array(_("Some systems are experiencing major outages"), _("Some systems are experiencing minor outages"), _("Some systems are under maintenance"));
$all = array(_("Our systems are experiencing major outages."), _("Our systems are experiencing minor outages"), _("Our systems are under maintenance"), _("All systems operational"));
$permissions = array(_("Super admin"), _("Admin"), _("Editor"));
/**
* Class that encapsulates methods to render header and footer
*/