From 2af0a528bc302b9ee66c65f91d1677c502617588 Mon Sep 17 00:00:00 2001 From: Milos Stojanovic Date: Sun, 30 Jan 2022 09:43:22 +0100 Subject: [PATCH] Website generation with Couscous --- translations/default.html | 61 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/translations/default.html b/translations/default.html index d02d55e..100e45d 100644 --- a/translations/default.html +++ b/translations/default.html @@ -156,6 +156,8 @@
  • swedish
  • japanese
  • slovenian
  • +
  • hebrew
  • +
  • romanian
  • Please help us translating FileGator to your language by submitting a Pull Request on GitHub.

    How to translate

    @@ -240,6 +242,65 @@ export default data +

    RTL support

    +

    Thanks to @yaniv1983 who provided these RTL tweaks for hebrew language in #301.

    +

    To enable RTL support, simply add tihs to your configuration.php 'add_to_head' section:

    +
    <style>
    +body {
    +    direction: rtl;
    +    color: #000000;
    +}
    +.search-btn[data-v-081c0a81] {
    +    margin-left: 10px;
    +    margin-right: unset;
    +}
    +#multi-actions a[data-v-081c0a81] {
    +    margin: 0 0 15px 15px;
    +}
    +.dropdown .dropdown-menu .has-link a, a.dropdown-item, button.dropdown-item {
    +    padding-left: 3rem;
    +    padding-right: unset;
    +    text-align: right;
    +}
    +table td:not([align]), table th:not([align]) {
    +    text-align: right;
    +}
    +.b-table .table th .th-wrap .icon {
    +    margin-left: 0;
    +    margin-right: .5rem;
    +    font-size: 1rem;
    +}
    +.b-table .table th .th-wrap.is-numeric {
    +    flex-direction: unset;
    +    text-align: right;
    +}
    +.progress-icon[data-v-07f55d0a] {
    +    margin-right: 15px;
    +    margin-left: unset;
    +}
    +.progress-items[data-v-07f55d0a] {
    +    overflow-y: hidden;
    +    margin-left: -100px;
    +    padding-left: 100px;
    +    max-height: 300px;
    +    margin-right: unset;
    +    padding-right: unset;
    +}
    +.navbar-burger {
    +    margin-left: unset;
    +    margin-right: auto;
    +}
    +@media screen and (min-width: 1024px) {
    +.navbar-end {
    +    justify-content: flex-end;
    +    margin-right: auto;
    +    margin-left: unset;
    +}}
    +@media (min-width: 1088px) {
    +.logo img[data-v-cd57c856] {
    +    max-height: 3.5rem !important;
    +}}
    +</style>