Skip to content
Snippets Groups Projects
Commit f2b25a5b authored by akwizgran's avatar akwizgran
Browse files

Wrong text was being shown in CreateGroupActivity. Fixes bug #22.

parent 1e6f6b2f
No related branches found
No related tags found
No related merge requests found
......@@ -106,13 +106,13 @@ SelectContactsDialog.Listener {
visibleToAll = new RadioButton(this);
visibleToAll.setId(2);
visibleToAll.setText(R.string.blog_visible_to_all);
visibleToAll.setText(R.string.group_visible_to_all);
visibleToAll.setOnClickListener(this);
radioGroup.addView(visibleToAll);
visibleToSome = new RadioButton(this);
visibleToSome.setId(3);
visibleToSome.setText(R.string.blog_visible_to_some);
visibleToSome.setText(R.string.group_visible_to_some);
visibleToSome.setOnClickListener(this);
radioGroup.addView(visibleToSome);
layout.addView(radioGroup);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment