Improve multi-device strings consistency

Fixes #3830
Closes #3840
// FREEBIE
This commit is contained in:
Geonu Kang
2015-07-28 18:29:57 +09:00
committed by Moxie Marlinspike
parent 109a6ed599
commit 278214ef86
6 changed files with 19 additions and 19 deletions

View File

@@ -38,7 +38,7 @@ public class DeviceListItem extends LinearLayout {
if (TextUtils.isEmpty(deviceInfo.getName())) this.name.setText(R.string.DeviceListItem_unnamed_device);
else this.name.setText(deviceInfo.getName());
this.created.setText(getContext().getString(R.string.DeviceListItem_created_s,
this.created.setText(getContext().getString(R.string.DeviceListItem_linked_s,
DateUtils.getExtendedRelativeTimeSpanString(getContext(),
Locale.getDefault(),
deviceInfo.getCreated())));