Files
Autodesk-Fusion-360-for-Linux/files/builds/stable-branch/locale/en-US/locale-en.sh

150 lines
9.8 KiB
Bash
Raw Normal View History

2024-03-24 03:22:49 -04:00
#!/usr/bin/env bash
2022-05-06 06:56:49 +02:00
####################################################################################################
# Name: Autodesk Fusion 360 - Setup Wizard (Linux) #
# Description: This is the English translation for the Setup Wizard. #
# Author: Steve Zabka #
# Author URI: https://cryinkfly.com #
# License: MIT #
2024-02-05 16:08:27 +01:00
# Copyright (c) 2020-2024 #
# Time/Date: 16:00/05.02.2024 #
# Version: 1.6.3 #
2022-05-06 06:56:49 +02:00
####################################################################################################
# Path: /$HOME/.fusion360/locale/en-EN/locale-en.sh
###############################################################################################################################################################
2022-05-29 19:53:11 +02:00
# ALL DEFINITIONS FOR AUTODESK FUSION 360 ARE ARRANGED HERE: #
2022-05-06 06:56:49 +02:00
###############################################################################################################################################################
2022-06-06 20:29:56 +02:00
# Window Title (Setup Wizard)
2022-06-06 20:30:28 +02:00
SP_TITLE="Setup Wizard - Autodesk Fusion 360 for Linux"
2022-06-06 20:29:56 +02:00
2022-05-06 06:56:49 +02:00
# Window Title:
2022-06-06 20:29:56 +02:00
SP_SUBTITLE="Welcome to the Autodesk Fusion 360 Installer for Linux"
2022-05-06 06:56:49 +02:00
# Welcome Screen:
SP_WELCOME_LABEL_1="This setup wizard installs Autodesk Fusion 360 on your computer so that you can also work on your projects on Linux."
SP_WELCOME_LABEL_2="Click Ok to continue or Cancel to exit the setup wizard."
SP_WELCOME_TOOLTIP_1="Here you get more informations about this setup wizard."
SP_WELCOME_TOOLTIP_2="Here you can adjust the default setting. For example the language."
###############################################################################################################################################################
# General Settings:
SP_SETTINGS_TITLE="General Settings"
SP_SETTINGS_LABEL_1="Here you have the option to adjust* further settings:"
SP_SETTINGS_LABEL_2="*Please remember that any change will affect the Autodesk Fusion 360 installation!"
SP_LOCALE_LABEL="Languages"
SP_LOCALE_SELECT=$(echo "Czech,English,German,Spanish,French,Italian,Japanese,Korean,Chinese")
2022-05-26 08:50:28 +02:00
WP_DRIVER_LABEL="Graphics Driver"
WP_DRIVER_SELECT=$(echo "DXVK,OpenGL")
2022-05-06 06:56:49 +02:00
2022-05-20 10:18:15 +02:00
# License Checkbox:
SP_LICENSE_CHECK_LABEL="I have read the terms and conditions and I accept them."
2022-06-08 06:31:04 +02:00
SP_LICENSE="$SP_PATH/locale/en-US/license-en.txt"
2022-05-20 10:18:15 +02:00
###############################################################################################################################################################
# Wineprefix Info - Autodesk Fusion 360 exist on the computer:
2022-06-07 20:39:52 +02:00
SP_LOGFILE_WINEPREFIX_INFO_TITLE="$SP_SUBTITLE"
2022-05-20 10:18:15 +02:00
SP_LOGFILE_WINEPREFIX_INFO_LABEL_1="A previous installation of Autodesk Fusion 360 has been detected on your system!"
SP_LOGFILE_WINEPREFIX_INFO_LABEL_2="Therefore, please select one of the options below to continue!"
SP_LOGFILE_WINEPREFIX_INFO_TOOLTIP_1="Create a new Wineprefix in a different location!"
2022-06-07 20:42:52 +02:00
SP_LOGFILE_WINEPREFIX_INFO_TOOLTIP_2="Repair a current Wineprefix on your system!"
SP_LOGFILE_WINEPREFIX_INFO_TOOLTIP_3="Remove a current Wineprefix from your system!"
2022-05-20 10:18:15 +02:00
2022-05-06 06:56:49 +02:00
###############################################################################################################################################################
# Linux distribution - Configuration:
SP_OS_TITLE="Linux distribution - Configuration"
SP_OS_LABEL_1="In this step you can now select your Linux distribution to install the required packages for the installation."
SP_OS_LABEL_2="Linux distribution:"
SP_OS_SELECT=$(echo "Arch Linux,Debian 11,Debian 12, Debian Testing,EndeavourOS,Fedora 38,Fedora 39,Fedora Rawhide,Linux Mint 20.x,Linux Mint 21.x,Linux Mint 5.x - LMDE Version,Manjaro Linux,openSUSE Leap 15.4,openSUSE Leap 15.5,openSUSE Tumbleweed,Red Hat Enterprise Linux 8.x,Red Hat Enterprise Linux 9.x,Solus,Ubuntu 20.04,Ubuntu 22.04,Ubuntu 23.10,Void Linux,Gentoo Linux")
2022-05-06 06:56:49 +02:00
###############################################################################################################################################################
# Installation Folder - Configuration:
2022-05-24 08:13:05 +02:00
SP_INSTALLDIR_TITLE="Select the destination of the installation"
SP_INSTALLDIR_LABEL_1="The Setup Wizard will install Autodesk Fusion 360 to the following directory*."
SP_INSTALLDIR_LABEL_2="Directory:"
SP_INSTALLDIR_LABEL_3="*You can also choose a different directory for the installation by clicking in the field."
2022-05-06 06:56:49 +02:00
###############################################################################################################################################################
2022-05-20 10:31:02 +02:00
# Directory info:
2022-05-24 08:13:05 +02:00
SP_INSTALLDIR_INFO_TITLE="Select Installation Directory - Info"
2022-05-20 10:31:02 +02:00
SP_INSTALLDIR_INFO_LABEL_1="Danger! This directory already exists!"
SP_INSTALLDIR_INFO_LABEL_2="Please select a different directory."
###############################################################################################################################################################
2022-05-06 06:56:49 +02:00
# Wine Version
SP_WINE_SETTINGS_TITLE="Select Wine Version"
SP_WINE_SETTINGS_LABEL_1="Here you have to decide between two options*."
SP_WINE_SETTINGS_LABEL_2="Select:"
2024-02-05 16:08:27 +01:00
SP_WINE_VERSION_SELECT=$(echo "Wine Version (Staging),Wine version (8.14 or higher) is already installed on the system!")
2022-05-06 06:56:49 +02:00
SP_WINE_SETTINGS_LABEL_3="*Depending on which option is selected, further packages will be installed on your system!"
###############################################################################################################################################################
2022-06-07 20:23:39 +02:00
SP_INSTALL_PROGRESS_LABEL="Autodesk Fusion 360 will be installed on your system ..."
SP_INSTALL_PROGRESS_REFRESH_LABEL="Autodesk Fusion 360 is being updated on this system ..."
###############################################################################################################################################################
2022-05-06 06:56:49 +02:00
# Extension - Configuration:
SP_EXTENSION_SELECT="Select"
SP_EXTENSION_NAME="Extension"
SP_EXTENSION_DESCRIPTION="Description"
2022-06-02 17:58:10 +02:00
SP_EXTENSION_LIST="$SP_PATH/locale/en-US/extensions-en.txt"
2022-05-24 08:13:05 +02:00
SP_SEARCH_EXTENSION_CZECH_LOCALE_TITLE="Install the Czech-Locale-Extension"
2022-05-24 08:18:09 +02:00
SP_SEARCH_EXTENSION_CZECH_LOCALE_LABEL_1="Select the file* in which the extension is located!"
SP_SEARCH_EXTENSION_CZECH_LOCALE_LABEL_2="File:"
2022-06-07 20:51:57 +02:00
SP_SEARCH_EXTENSION_CZECH_LOCALE_LABEL_3="*By default you will find your downloaded extensions in the download directory."
2022-05-06 06:56:49 +02:00
###############################################################################################################################################################
2022-05-24 07:26:18 +02:00
# ALL DEFINITIONS FOR UNINSTALL AUTODESK FUSION 360 ARE ARRANGED HERE: #
###############################################################################################################################################################
2022-06-06 21:02:53 +02:00
DL_TITLE="Uninstaller - Autodesk Fusion 360 for Linux"
DL_SUBTITLE="Welcome to the Autodesk Fusion 360 Uninstaller for Linux"
2022-05-24 07:26:18 +02:00
DL_WELCOME_LABEL_1="Autodesk Fusion 360 will be uninstalled from your computer!"
DL_WELCOME_LABEL_2="Click Ok to continue or Cancel to exit this Uninstaller."
DL_WELCOME_TOOLTIP_1="Here you get more informations about this Uninstaller."
DL_WINEPREFIXES_DEL_INFO_TEXT="Are you sure you want to delete the selected Wineprefix from your computer?"
DL_WINEPREFIXES_DEL_INFO_LABEL="Yes, I am aware that all my personal data will be lost in the Wineprefix."
2022-05-29 19:53:11 +02:00
2022-06-06 20:21:36 +02:00
###############################################################################################################################################################
SP_COMPLETED_TEXT="Autodesk Fusion 360 was successfully installed and setup on your computer."
SP_COMPLETED_CHECK_LABEL="Run Autodesk Fusion 360"
2022-06-07 21:10:42 +02:00
###############################################################################################################################################################
# ALL DEFINITIONS FOR THE LAUNCHER OF AUTODESK FUSION 360 ARE ARRANGED HERE: #
###############################################################################################################################################################
2022-06-08 08:42:08 +02:00
UP_TITLE="Autodesk Fusion 360 for Linux - Launcher"
UP_NO_UPDATE_INFO_LABEL="No newer version was found, so your Autodesk fusion 360 is up to date!"
UP_SKIP_INFO_LABEL="The update was skipped! Please consider checking for updates next time."
2022-06-08 08:42:08 +02:00
UP_SKIP_UPDATE_QUESTION_LABEL="Are you sure you want to skip searching for an Autodesk Fusion 360 update?"
UP_QUESTION_LABEL="A new version has been released! Do you want to update now?"
UP_NO_CONNECTION_WARNING_LABEL="The connection to the server could not be established! Checking for new updates has been skipped! Please check your internet connection!"
UP_WANT_TO_CHECK_FOR_UPDATES="Would you like to check for updates to Fusion 360 before launching?"
2022-06-08 21:05:12 +02:00
UP_INSTALL_UPDATE_PROGRESS_LABEL="Autodesk Fusion 360 will be updated to a newer version ..."
2022-06-08 08:42:08 +02:00
2022-05-29 19:53:11 +02:00
###############################################################################################################################################################
###############################################################################################################################################################
SELECT="Select"
WINEPREFIXES_TYPE="Wineprefixes Type"
WINEPREFIXES_DRIVER="Wineprefixes Driver"
WINEPREFIXES_DIRECTORY="Wineprefixes Directory"