diff --git a/mobile/lib/pages/library/shared_link/shared_link_edit.page.dart b/mobile/lib/pages/library/shared_link/shared_link_edit.page.dart index 825b1ec2e7..23c24a64b0 100644 --- a/mobile/lib/pages/library/shared_link/shared_link_edit.page.dart +++ b/mobile/lib/pages/library/shared_link/shared_link_edit.page.dart @@ -132,10 +132,10 @@ class SharedLinkEditPage extends HookConsumerWidget { textInputAction: TextInputAction.done, autofocus: false, decoration: InputDecoration( - labelText: slugController.text.isNotEmpty ? context.t.custom_url : null, + labelText: slugController.text.isNotEmpty ? context.t.shared_link_custom_url_title : null, labelStyle: const TextStyle(fontWeight: FontWeight.bold), border: const OutlineInputBorder(), - hintText: context.t.custom_url, + hintText: context.t.shared_link_custom_url_title, prefixText: slugController.text.isNotEmpty ? '/s/' : null, prefixStyle: const TextStyle(fontWeight: FontWeight.bold, fontSize: 14), ),