mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
fix 18n
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
acff4c88e7
commit
29227fc00f
2 changed files with 6 additions and 1 deletions
|
@ -182,7 +182,11 @@ class ImageDetailFragment : Fragment(), Injectable {
|
|||
if (metadata.make == null || metadata.model?.contains(metadata.make!!) == true) {
|
||||
binding.imgTCMakeModel.text = metadata.model
|
||||
} else {
|
||||
binding.imgTCMakeModel.text = "${metadata.make} ${metadata.model}"
|
||||
binding.imgTCMakeModel.text = String.format(
|
||||
getString(R.string.make_model),
|
||||
metadata.make,
|
||||
metadata.model
|
||||
)
|
||||
}
|
||||
|
||||
// image taking conditions
|
||||
|
|
|
@ -1107,4 +1107,5 @@
|
|||
<string name="image_preview_unit_megapixel">%s MP</string>
|
||||
<string name="image_preview_filedetails">File details</string>
|
||||
<string name="image_preview_image_taking_conditions">Image taking conditions</string>
|
||||
<string translatable="false" name="make_model">%1$s %2$s</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue