Translated Add Link Blade

This commit is contained in:
Frank 2023-06-06 08:09:22 +02:00
parent 668ca7809b
commit 51ef1da814
2 changed files with 21 additions and 11 deletions

View File

@ -163,9 +163,19 @@ return [
'Active users:' => 'Active users:+', 'Active users:' => 'Active users:+',
'Title' => 'Title', 'Title' => 'Title+',
'Link' => 'Link*', 'Link' => 'Link*+',
'Button' => 'Button*', 'Button' => 'Button*+',
'Required fields' => '* Required fields+',
'Submit' => 'Submit+',
'See all links' => 'See all links+',
'More information' => 'More information+',
'addli.description.1-5' => 'The `Custom` button allows you to add a custom link, where the text on the button is determined with the link title set above.+',
'addli.description.2-5' => 'The `Custom_website` button functions similar to the Custom button, with the addition of a function that requests the favicon from the chosen URL and uses it as the button icon.+',
'addli.description.3-5' => '',
'addli.description.4-5' => 'The `Space` button will be replaced with an empty space, so buttons could be visually separated into groups. Entering a number between 1-10 in the title section will change the empty space`s distance.+',
'addli.description.5-5' => 'The `Heading` button will be replaced with a sub-heading, where the title defines the text on that heading.+',
'Config' => 'Config+', 'Config' => 'Config+',

View File

@ -28,19 +28,19 @@
<option style="background-color:#ebebeb;"> space </option> <option style="background-color:#ebebeb;"> space </option>
</select> </select>
<br> <br>
<label>* Required fields</label><br> <label>{{__('messages.Required fields')}}</label><br>
</div> </div>
<div class="row"><button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button><a style="color:white;background-color:#f8b739;" class="mt-3 ml-3 btn" href="{{ url('/studio/links') }}">See all links</a></div> <div class="row"><button type="submit" class="mt-3 ml-3 btn btn-info">{{__('messages.Submit')}}</button><a style="color:white;background-color:#f8b739;" class="mt-3 ml-3 btn" href="{{ url('/studio/links') }}">{{__('messages.See all links')}}</a></div>
</form> </form>
<br><br><details> <br><br><details>
<summary>More information</summary> <summary>{{__('messages.More information')}}</summary>
<pre style="color: grey;"> <pre style="color: grey;">
The 'Custom' button allows you to add a custom link, where the text on the button is determined with the link title set above. {{__('messages.addli.description.1-5')}}
The 'Custom_website' button functions similar to the Custom button, with the addition of a function that requests the favicon from the chosen URL and uses it as the button icon. {{__('messages.addli.description.2-5')}}
{{__('messages.addli.description.3-5')}}
The 'Space' button will be replaced with an empty space, so buttons could be visually separated into groups. Entering a number between 1-10 in the title section will change the empty space's distance. {{__('messages.addli.description.4-5')}}
The 'Heading' button will be replaced with a sub-heading, where the title defines the text on that heading. {{__('messages.addli.description.5-5')}}
</pre> </pre>
</details> </details>