diff --git a/freedata_gui/src/components/dynamic_components.vue b/freedata_gui/src/components/dynamic_components.vue index 9ebf5f84..4aa589b8 100644 --- a/freedata_gui/src/components/dynamic_components.vue +++ b/freedata_gui/src/components/dynamic_components.vue @@ -518,7 +518,7 @@ onMounted(() => { - grid edit + {{ $t('grid.gridedit') }} @@ -560,7 +560,7 @@ onMounted(() => { >
- Manage grid widgets  

- Grid widgets allow you to customize the display. You may add additional widgets to fit your needs. You can move and resize the individual widgets! + {{ $t('grid.gridwidgetsdescription') }}


@@ -612,7 +612,7 @@ onMounted(() => { aria-expanded="true" aria-controls="collapseHeardStations" > - Activity + {{ $t('grid.activity') }}
{ aria-expanded="false" aria-controls="collapseActivities" > - Audio + {{ $t('grid.audio') }}
{ aria-expanded="false" aria-controls="collapseBroadcasts" > - Broadcasts + {{ $t('grid.broadcasts') }}
{ aria-expanded="false" aria-controls="collapseRadioControl" > - Radio Control/Status + {{ $t('grid.radiocontrol') }}
{ aria-expanded="false" aria-controls="collapseAudioControl" > - Statistics + {{ $t('grid.statistics') }}
{ aria-expanded="false" aria-controls="collapseStatistics" > - Other + {{ $t('grid.other') }}
{ class="btn btn-sm btn-outline-warning" type="button" @click="clearAllItems" - title="Clear all items from the grid" + :title="$t('grid.cleargrid_help')" > - Clear grid + {{ $t('grid.cleargrid') }}
 
@@ -776,7 +776,7 @@ onMounted(() => {
-
Frequency selection
+
{{ $t('grid.frequencyselection') }}

- Commonly used frequencies are listed here, and are all USB.  Simply click on a entry or manually enter a frequency in the textbox to tune your rig if rig control is enabled. + {{ $t('grid.frequencydescription') }}

    { >
  • - frequency + {{ $t('general.frequency') }} CQ ... diff --git a/freedata_gui/src/components/grid/grid_active_audio.vue b/freedata_gui/src/components/grid/grid_active_audio.vue index e0e476ba..f1eadbcf 100644 --- a/freedata_gui/src/components/grid/grid_active_audio.vue +++ b/freedata_gui/src/components/grid/grid_active_audio.vue @@ -11,7 +11,7 @@ const state = useStateStore(pinia);
      - Audio + {{ $t('grid.components.audio') }}
    diff --git a/freedata_gui/src/components/grid/grid_active_broadcasts.vue b/freedata_gui/src/components/grid/grid_active_broadcasts.vue index 6c3f193a..fbee8327 100644 --- a/freedata_gui/src/components/grid/grid_active_broadcasts.vue +++ b/freedata_gui/src/components/grid/grid_active_broadcasts.vue @@ -69,7 +69,7 @@ window.addEventListener(
      - Broadcasts + {{ $t('grid.componments.broadcasts') }}
    @@ -95,8 +95,8 @@ window.addEventListener( title="Send a ping request to a remote station" @click="transmitPing" > - PING Station - Sending... + {{ $t('grid.components.pingstation') }} + {{ $t('grid.components.transmitting') }}
    diff --git a/freedata_gui/src/components/grid/grid_active_broadcasts_vert.vue b/freedata_gui/src/components/grid/grid_active_broadcasts_vert.vue index 7cdd38ff..1e234ae9 100644 --- a/freedata_gui/src/components/grid/grid_active_broadcasts_vert.vue +++ b/freedata_gui/src/components/grid/grid_active_broadcasts_vert.vue @@ -72,7 +72,7 @@ window.addEventListener(
      - Broadcasts + {{ $t('grid.components.broadcasts') }}
    @@ -90,7 +90,7 @@ window.addEventListener( maxlength="11" pattern="[A-Z]*" /> - +
    @@ -122,8 +122,8 @@ window.addEventListener( :disabled="isCQButtonDisabled" >

    - CQ CQ CQ - Sending CQ... + {{ $t('grid.components.cqcqcq') }} + {{ $t('grid.components.sendingcq') }}

    @@ -140,7 +140,7 @@ window.addEventListener( v-model="state.beacon_state" @click="startStopBeacon" /> - +
    @@ -154,7 +154,7 @@ window.addEventListener( v-model="state.away_from_key" @change="setAwayFromKey" /> - +
    diff --git a/freedata_gui/src/components/grid/grid_active_heard_stations.vue b/freedata_gui/src/components/grid/grid_active_heard_stations.vue index 178715cc..cb818957 100644 --- a/freedata_gui/src/components/grid/grid_active_heard_stations.vue +++ b/freedata_gui/src/components/grid/grid_active_heard_stations.vue @@ -88,7 +88,7 @@ function transmitPing(callsign) {
      - Heard stations + {{ $t('grid.components.heardstations') }}
    @@ -97,14 +97,14 @@ function transmitPing(callsign) { - - - - - - - - + + + + + + + + diff --git a/freedata_gui/src/components/grid/grid_active_heard_stations_mini.vue b/freedata_gui/src/components/grid/grid_active_heard_stations_mini.vue index ba835a83..7d9d24e9 100644 --- a/freedata_gui/src/components/grid/grid_active_heard_stations_mini.vue +++ b/freedata_gui/src/components/grid/grid_active_heard_stations_mini.vue @@ -36,7 +36,7 @@ function pushToPing(origin) {
      - Heard Stations + {{ $t('grid.components.heardstations') }}
    @@ -45,8 +45,8 @@ function pushToPing(origin) {
    TimeFreqDXCallGridDistTypeSNRAFK?{{ $t('grid.components.time') }}{{ $t('grid.components.freq') }}{{ $t('grid.components.dxcall') }}{{ $t('grid.components.grid') }}{{ $t('grid.components.dist') }}{{ $t('grid.components.type') }}{{ $t('grid.components.snr') }}{{ $t('grid.components.afk') }}
    - - + + diff --git a/freedata_gui/src/components/grid/grid_active_rig_control.vue b/freedata_gui/src/components/grid/grid_active_rig_control.vue index 9b27fa1d..d69aff34 100644 --- a/freedata_gui/src/components/grid/grid_active_rig_control.vue +++ b/freedata_gui/src/components/grid/grid_active_rig_control.vue @@ -36,7 +36,7 @@ function setRadioParameterTuner() {
      - Radio control + {{ $t('grid.components.radiocontrol') }}
    @@ -58,7 +58,7 @@ function setRadioParameterTuner() {
    - Mode + {{ $t('grid.components.radiocontrolmode') }} - +
    diff --git a/freedata_gui/src/components/grid/grid_activities.vue b/freedata_gui/src/components/grid/grid_activities.vue index abb90d29..27765196 100644 --- a/freedata_gui/src/components/grid/grid_activities.vue +++ b/freedata_gui/src/components/grid/grid_activities.vue @@ -26,7 +26,7 @@ function getDateTime(timestampRaw) {
      - Activity + {{ $t('grid.components.activity') }}
    diff --git a/freedata_gui/src/components/grid/grid_beacon.vue b/freedata_gui/src/components/grid/grid_beacon.vue index ad54be8c..3c2ee2ba 100644 --- a/freedata_gui/src/components/grid/grid_beacon.vue +++ b/freedata_gui/src/components/grid/grid_beacon.vue @@ -23,7 +23,7 @@ function startStopBeacon() { @click="startStopBeacon" title="Enable/disable periodic beacons" > - Beacon  + {{ $t('grid.components.beacon') }}  - Ping + {{ $t('grid.components.ping') }}
    diff --git a/freedata_gui/src/components/grid/grid_ptt.vue b/freedata_gui/src/components/grid/grid_ptt.vue index 7c596b5e..b235528e 100644 --- a/freedata_gui/src/components/grid/grid_ptt.vue +++ b/freedata_gui/src/components/grid/grid_ptt.vue @@ -12,6 +12,6 @@ const state = useStateStore(pinia); class="d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100" :class="state.ptt_state ? 'text-bg-warning' : 'text-bg-white'" > -

    ON AIR

    +

    {{ $t('grid.components.onair').toUpperCase() }}

    diff --git a/freedata_gui/src/components/grid/grid_scatter.vue b/freedata_gui/src/components/grid/grid_scatter.vue index 20625ec6..38c28912 100644 --- a/freedata_gui/src/components/grid/grid_scatter.vue +++ b/freedata_gui/src/components/grid/grid_scatter.vue @@ -95,7 +95,7 @@ const scatterChartData = computed(() => ({
      - Scatter diagram + {{ $t('grid.components.scatterdiagram') }}
    diff --git a/freedata_gui/src/components/grid/grid_stats_chart.vue b/freedata_gui/src/components/grid/grid_stats_chart.vue index 28122046..d3da17be 100644 --- a/freedata_gui/src/components/grid/grid_stats_chart.vue +++ b/freedata_gui/src/components/grid/grid_stats_chart.vue @@ -98,7 +98,7 @@ const transmissionSpeedChartData = computed(() => ({
      - Transmission Charts + {{ $t('grid.components.transmissioncharts') }}
    diff --git a/freedata_gui/src/components/grid/grid_tune.vue b/freedata_gui/src/components/grid/grid_tune.vue index e436dd76..8d2ed86f 100644 --- a/freedata_gui/src/components/grid/grid_tune.vue +++ b/freedata_gui/src/components/grid/grid_tune.vue @@ -16,7 +16,7 @@ setActivePinia(pinia); data-bs-target="#audioModal" title="Tune" > - Tune + {{ $t('grid.components.tune') }}
    diff --git a/freedata_gui/src/locales/en_English.json b/freedata_gui/src/locales/en_English.json index 7dedc30e..5822ba4c 100644 --- a/freedata_gui/src/locales/en_English.json +++ b/freedata_gui/src/locales/en_English.json @@ -9,7 +9,64 @@ "dxcallsign": "dxcallsign", "destination": "destination", "stop": "Stop", - "modem": "Modem" + "modem": "Modem", + "frequency": "frequency" + }, + "grid": { + "frequencydescription": "Commonly used frequencies are listed here, and are all USB. Simply click on a entry or manually enter a frequency in the textbox to tune your rig if rig control is enabled.", + "frequencyselection": "Frequency selection", + "savepreset": "Save preset", + "savepreset_help": "Save current grid layout as a preset that can be resotred using restore preset button", + "restorepreset": "Restore preset", + "restorepreset_help": "Restore your saved grid preset (clears current grid)", + "cleargrid": "Clear grid", + "cleargrid_help": "Clear all items from the grid", + "gridedit": "grid edit", + "managegridwidgets": "Manage grid widgets", + "gridwidgetsdescription": "Grid widgets allow you to customize the display. You may add additional widgets to fit your needs. You can move and resize the individual widgets!", + "fillgrid": "Fill grid with common widgets", + "fillgridsmallscreen": "Fill grid for small screens", + "activity": "Activity", + "audio": "Audio", + "broadcasts": "Broadcasts", + "radiocontrol": "Radio control/Status", + "statistics": "Statistics", + "other": "Other", + "components": { + "tune": "Tune", + "stop_help": "Abort session and stop transmissions", + "transmissioncharts": "Transmission charts", + "scatterdiagram": "Scatter diagram", + "onair": "on air", + "ping": "Ping", + "ping_help": "Send a ping reqiuest to a remote station", + "heardstations": "Heard Stations", + "time": "Time", + "freq": "Freq", + "dxcall": "DXCall", + "grid": "Grid", + "dist": "Dist", + "type": "Type", + "snr": "SNR", + "afk": "AFK?", + "audio": "Audio", + "broadcasts": "Broadcasts", + "transmitting": "Sending...", + "pingstation": "PING Station", + "sendingcq": "Sending CQ...", + "callcq": "Call CQ", + "cqcqcq": "CQ CQ CQ", + "togglebeacon": "toggle beacon", + "togglebeacon_help": "Toggle beacon mode. While sending a beacon, you can receive ping requests and open a datachannel. If a datachannel is openend, the beacon pauses.", + "enablebeacon": "Enable beacon", + "awayfromkey": "Away from key", + "radiocontrol": "Radio control", + "radiocontrolmode": "Mode", + "powerpercent": "% Power", + "tuner": "Tuner", + "activity": "Activity", + "beacon": "Beacon" + } }, "modals": { "close": "Close",
    TimeDX CallTim{{ $t('grid.components.time') }}e{{ $t('grid.components.dxcall') }}