Changeset 35742 for main


Ignore:
Timestamp:
2021-11-23T14:22:36+13:00 (2 years ago)
Author:
cstephen
Message:

Improve macroniser funding/disclaimer.

Location:
main/trunk/model-interfaces-dev/atea
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/macron-restoration/src/App.vue

    r35729 r35742  
    44        <div class="app-bar-content">
    55            <span class="heading1">{{ translations.get("Title") }}</span>
     6
     7            <toggle-button class="theme-primary-l1" v-model="showInfo" :reverseState="true">
     8                <span class="material-icons mdi-l">info</span>
     9            </toggle-button>
    610        </div>
     11
     12        <div v-if="showInfo" class="paper" v-html="translations.get('Description')" />
    713    </div>
    814
     
    1622        <div class="inner-content" v-if="selectedTab === 'file'">
    1723            <file-input />
    18         </div>
    19     </div>
    20 
    21     <div class="footer">
    22         <a href="https://www.waikato.ac.nz" target="_blank">
    23             <img src="img/logo_waikato_uni.jpg" alt="The University of Waikato Logo" />
    24         </a>
    25 
    26         <div>
    27             This service was funded by <a href="http://www.maramatanga.co.nz" target="_blank">Ngā Pae O Te Māramatanga</a> as
    28             part of the research related to the digitalization of the Pei Jones collection,
    29             and was developed at the <a href="https://www.waikato.ac.nz" target="_blank">University of Waikato</a>.
    30         </div>
    31 
    32         <a href="http://www.maramatanga.co.nz" target="_blank">
    33             <img src="img/logo_maramatanga.jpg" alt="The Ngā Pae o te Māramatanga Logo" />
    34         </a>
    35 
    36         <div>
    37             This website collects simple usage logs which will be used for development purposes only.
    38             No details which could be used to identify individuals will be collected and the data will be kept secure at the University of Waikato.
    39             If you do not wish for your activity to be included, click <a href="mailto:[email protected]">here</a> to notify Dr. Te Taka Keegan.
    40             Copyright &copy; 2014 University of Waikato
    4124        </div>
    4225    </div>
     
    8972    padding: 1em;
    9073}
    91 
    92 .footer {
    93     display: grid;
    94     grid-template-columns: auto 1fr;
    95     gap: 1em;
    96 
    97     box-shadow: 0px 0px 3px 2px #8a8a8a;
    98     padding: 1em;
    99     background-color: var(--paper-color);
    100 
    101     img {
    102         grid-column: 1;
    103         height: 48px;
    104     }
    105 
    106     div {
    107         grid-column: 2;
    108     }
    109 }
    110 
    111 .funding {
    112     display: flex;
    113     gap: 1em;
    114     align-items: center;
    115 }
    11674</style>
    11775
     
    13189    data() {
    13290        return {
    133             selectedTab: "direct"
     91            selectedTab: "direct",
     92            showInfo: false
    13493        }
    13594    },
  • main/trunk/model-interfaces-dev/atea/macron-restoration/src/components/DirectInput.vue

    r35729 r35742  
    66    <div class="text-container">
    77        <span v-if="errorState" class="material-icons mdi-m error-text">error</span>
    8         <span v-if="errorState" class="error-text">Something went wrong! Please try modifying your input text.</span>
     8        <span v-if="errorState" class="error-text">{{ translations.get('DirectInput_UnknownError') }}</span>
    99
    1010        <span class="preserveWhitespace" v-html="formattedRestored" />
  • main/trunk/model-interfaces-dev/atea/resources/interface_atea.properties

    r35741 r35742  
    2323
    2424atea.macroniser.Title=Māori Macron Restoration Service
     25atea.macroniser.Description=This service was previously funded by <a href='http://www.maramatanga.co.nz' target='_blank'>Ngā Pae O Te Māramatanga</a> and was developed at the <a href='https://www.waikato.ac.nz' target='_blank'>University of Waikato</a>.<br /><br />This website collects simple usage logs for development purposes only. No identifying details will be collected and the data will be kept securely at the University of Waikato. If you do not wish for your activity to be included, please <a href='mailto:[email protected]'>notify Dr. Te Taka Keegan</a>.
    2526atea.macroniser.DirectInput=Macronise Direct Input
    2627atea.macroniser.FileInput=Macronise Files
     
    3132atea.macroniser.DirectInput_Download=Download as Text
    3233atea.macroniser.DirectInput_NormaliseLinebreaks=Normalise Linebreaks
     34atea.macroniser.DirectInput_UnknownError=Something went wrong! Please try modifying your input text.
    3335
    3436atea.macroniser.FileInput_Download=Download
Note: See TracChangeset for help on using the changeset viewer.