Remove comment post confirmation. Fix resources build error.
This commit is contained in:
parent
136853853a
commit
99a4a0a22f
3 changed files with 6 additions and 32 deletions
|
@ -441,22 +441,8 @@ public class ChannelCommentsFragment extends Fragment implements SdkStatusListen
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Context context = getContext();
|
|
||||||
if (context != null) {
|
|
||||||
String titleText = getResources().getString(R.string.comment_confirm_post);
|
|
||||||
String confirmText = getResources().getString(R.string.confirm_post_comment);
|
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(context).
|
|
||||||
setTitle(titleText).
|
|
||||||
setMessage(confirmText)
|
|
||||||
.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(DialogInterface dialogInterface, int i) {
|
|
||||||
postComment();
|
postComment();
|
||||||
}
|
}
|
||||||
}).setNegativeButton(R.string.no, null);
|
|
||||||
builder.show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void updatePostAsChannel(Claim channel) {
|
private void updatePostAsChannel(Claim channel) {
|
||||||
boolean hasThumbnail = !Helper.isNullOrEmpty(channel.getThumbnailUrl());
|
boolean hasThumbnail = !Helper.isNullOrEmpty(channel.getThumbnailUrl());
|
||||||
|
|
|
@ -3086,22 +3086,8 @@ public class FileViewFragment extends BaseFragment implements
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Context context = getContext();
|
|
||||||
if (context != null) {
|
|
||||||
String titleText = getResources().getString(R.string.comment_confirm_post);
|
|
||||||
String confirmText = getResources().getString(R.string.confirm_post_comment);
|
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(context).
|
|
||||||
setTitle(titleText).
|
|
||||||
setMessage(confirmText)
|
|
||||||
.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(DialogInterface dialogInterface, int i) {
|
|
||||||
postComment();
|
postComment();
|
||||||
}
|
}
|
||||||
}).setNegativeButton(R.string.no, null);
|
|
||||||
builder.show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void updatePostAsChannel(Claim channel) {
|
private void updatePostAsChannel(Claim channel) {
|
||||||
boolean hasThumbnail = !Helper.isNullOrEmpty(channel.getThumbnailUrl());
|
boolean hasThumbnail = !Helper.isNullOrEmpty(channel.getThumbnailUrl());
|
||||||
|
|
|
@ -88,8 +88,6 @@
|
||||||
<string name="please_enter_comment">Please enter a comment to post.</string>
|
<string name="please_enter_comment">Please enter a comment to post.</string>
|
||||||
<string name="please_select_channel">Please select a channel to post your comment as.</string>
|
<string name="please_select_channel">Please select a channel to post your comment as.</string>
|
||||||
<string name="comment_form_post">Post</string>
|
<string name="comment_form_post">Post</string>
|
||||||
<string name="comment_confirm_post">Confirm your comment</string>
|
|
||||||
<string name="confirm_post_comment">This will post your comment</string>
|
|
||||||
<string name="comment_posted">Your comment was successfully posted.</string>
|
<string name="comment_posted">Your comment was successfully posted.</string>
|
||||||
<string name="please_select_repost_channel">Please select a channel to repost on.</string>
|
<string name="please_select_repost_channel">Please select a channel to repost on.</string>
|
||||||
<string name="reply">Reply</string>
|
<string name="reply">Reply</string>
|
||||||
|
@ -103,6 +101,10 @@
|
||||||
<item quantity="one">This will purchase "%1$s" for %2$s credit</item>
|
<item quantity="one">This will purchase "%1$s" for %2$s credit</item>
|
||||||
<item quantity="other">This will purchase "%1$s" for %2$s credits</item>
|
<item quantity="other">This will purchase "%1$s" for %2$s credits</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
|
<plurals name="confirm_post_comment">
|
||||||
|
<item quantity="one">This will post your comment with a tip of %1$s credit for %2$s</item>
|
||||||
|
<item quantity="other">This will post your comment with a tip of %1$s credits for %2$s</item>
|
||||||
|
</plurals>
|
||||||
|
|
||||||
<!-- Channel view -->
|
<!-- Channel view -->
|
||||||
<string name="no_channel_info">There\'s nothing here yet.\nPlease check back later.</string>
|
<string name="no_channel_info">There\'s nothing here yet.\nPlease check back later.</string>
|
||||||
|
|
Loading…
Reference in a new issue