diff --git a/Clover/res/values/strings.xml b/Clover/res/values/strings.xml index 578f0045..4361bb01 100644 --- a/Clover/res/values/strings.xml +++ b/Clover/res/values/strings.xml @@ -44,6 +44,7 @@ Edit available boards Add or remove boards Add board + Board code e.g. lit Added board Board already added Unknown board code diff --git a/Clover/src/org/floens/chan/ui/activity/BoardEditor.java b/Clover/src/org/floens/chan/ui/activity/BoardEditor.java index 082040e1..4d36fd10 100644 --- a/Clover/src/org/floens/chan/ui/activity/BoardEditor.java +++ b/Clover/src/org/floens/chan/ui/activity/BoardEditor.java @@ -209,6 +209,7 @@ public class BoardEditor extends Activity { text.setAdapter(fillAdapter); text.setThreshold(1); text.setDropDownHeight(ViewGroup.LayoutParams.WRAP_CONTENT); + text.setHint(R.string.board_add_hint); AlertDialog dialog = new AlertDialog.Builder(this) .setPositiveButton(R.string.add, new DialogInterface.OnClickListener() {