diff --git a/docs/widgets.md b/docs/widgets.md index a45a2591..7a31041c 100644 --- a/docs/widgets.md +++ b/docs/widgets.md @@ -1838,7 +1838,7 @@ Display info from the Gluetun VPN container public IP API. This can show the IP **Field** | **Type** | **Required** | **Description** --- | --- | --- | --- -**`visibleFields`** | `string` | Required | A comma separated list of the fields you want visible in the widget. You can have any number of the following : `public_ip`, `region`, `country`, `city`, `location`, `organisation`, `postal_code`, `timezone` +**`visibleFields`** | `string` | Required | A comma separated list of the fields you want visible in the widget. You can have any number of the following : `public_ip`, `region`, `country`, `city`, `location`, `organisation`, `postal_code`, `timezone`. Defaults to just `public_ip` **`host`** | `string` | Required | The url to the gluetun HTTP control server. E.g. `http://gluetun:8000` diff --git a/src/assets/locales/en.json b/src/assets/locales/en.json index efdaf631..404e3da8 100644 --- a/src/assets/locales/en.json +++ b/src/assets/locales/en.json @@ -304,6 +304,16 @@ "up": "Up", "down": "Down" }, + "gluetun-status": { + "vpn-ip": "VPN IP", + "country": "Country", + "region": "Region", + "city": "City", + "post-code": "Post Code", + "location": "Location", + "timezone": "Timezone", + "organization": "Organization" + }, "nextcloud": { "active": "active", "and": "and", diff --git a/src/components/Widgets/GluetunStatus.vue b/src/components/Widgets/GluetunStatus.vue index 381265e6..c07e96e2 100644 --- a/src/components/Widgets/GluetunStatus.vue +++ b/src/components/Widgets/GluetunStatus.vue @@ -1,35 +1,35 @@