diff --git a/views/devicesview/adddevice/aspect_ratio_tolerance_input.templ b/views/devicesview/adddevice/aspect_ratio_tolerance_input.templ index 1c04f6d..eaa3e57 100644 --- a/views/devicesview/adddevice/aspect_ratio_tolerance_input.templ +++ b/views/devicesview/adddevice/aspect_ratio_tolerance_input.templ @@ -30,8 +30,8 @@ templ AspectRatioToleranceInput(data AspectRatioToleranceData) { />
- Aspect Ratio Tolerance is a filter on how close the shape of the download images to the device shape is. - The bigger the value, the more images will be accepted and vice versa. '0.20' is the default value because + Aspect Ratio Tolerance is a filter on how close the shape of the candidate for download images to the device shape is. + The bigger the value, the more images will be accepted, but will also get more images that does not look good when stretched. '0.20' is the default value because it accept quite a bit of images to download while still looking good even when the image is stretched for the device's wallpaper.
diff --git a/views/devicesview/adddevice/name_input.templ b/views/devicesview/adddevice/name_input.templ index ca20b39..593f76b 100644 --- a/views/devicesview/adddevice/name_input.templ +++ b/views/devicesview/adddevice/name_input.templ @@ -32,7 +32,7 @@ templ NameInput(data NameInputData) { if data.Error != "" { { data.Error } } else { - The display name for the device. Use distinguishable value for easy lookup. + The display name for the device. You can use non-english characters for the name. } diff --git a/views/devicesview/adddevice/resolution_input.templ b/views/devicesview/adddevice/resolution_input.templ index 0c5a5ef..81b468f 100644 --- a/views/devicesview/adddevice/resolution_input.templ +++ b/views/devicesview/adddevice/resolution_input.templ @@ -41,7 +41,7 @@ templ ResolutionXInput(data ResolutionData) { if data.Value > 0 { value={ strconv.Itoa(data.Value) } } - placeholder="1920" + placeholder="e.g. 1920" required />
@@ -90,7 +90,7 @@ templ ResolutionYInput(data ResolutionData) { if data.Value > 0 { value={ strconv.Itoa(data.Value) } } - placeholder="1080" + placeholder="e.g. 1080" required />
diff --git a/views/devicesview/adddevice/slug_input.templ b/views/devicesview/adddevice/slug_input.templ index cbd3aac..84abbc3 100644 --- a/views/devicesview/adddevice/slug_input.templ +++ b/views/devicesview/adddevice/slug_input.templ @@ -25,7 +25,7 @@ templ SlugInput(data SlugInputData) { "text-error", data.Error != "", "text-success", data.Valid != "", ) } - >Slug + >Slug Identifier
@@ -58,7 +57,7 @@ templ SlugInput(data SlugInputData) { } else if data.Error != "" { { data.Error } } else { - Unique identifier for the device. + URL friendly Unique identifier for the device. Value must be lowercase english alphabet and supported separator is only 'dash' (-) and 'underscores' (_). }