-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'
Release See merge request sschueller/peertube!21
- Loading branch information
Showing
8 changed files
with
568 additions
and
648 deletions.
There are no files selected for viewing
590 changes: 0 additions & 590 deletions
590
app/src/main/java/net/schueller/peertube/activity/VideoListActivity.java
This file was deleted.
Oops, something went wrong.
512 changes: 512 additions & 0 deletions
512
app/src/main/java/net/schueller/peertube/activity/VideoListActivity.kt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 0 additions & 55 deletions
55
app/src/main/java/net/schueller/peertube/helper/MetaDataHelper.java
This file was deleted.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
app/src/main/java/net/schueller/peertube/helper/MetaDataHelper.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (C) 2020 Stefan Schüller <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package net.schueller.peertube.helper | ||
|
||
import android.content.Context | ||
import android.text.format.DateUtils | ||
import net.schueller.peertube.R.string | ||
import org.ocpsoft.prettytime.PrettyTime | ||
import java.util.Date | ||
import java.util.Locale | ||
|
||
object MetaDataHelper { | ||
|
||
@JvmStatic | ||
fun getMetaString(getCreatedAt: Date, viewCount: Int, context: Context): String { | ||
|
||
// Compatible with SDK 21+ | ||
val currentLanguage = Locale.getDefault().displayLanguage | ||
val p = PrettyTime(currentLanguage) | ||
val relativeTime = p.format(Date(getCreatedAt.time)) | ||
return relativeTime + | ||
context.resources.getString(string.meta_data_seperator) + | ||
viewCount + context.resources.getString(string.meta_data_views) | ||
} | ||
|
||
@JvmStatic | ||
fun getOwnerString(accountName: String, serverHost: String, context: Context): String { | ||
return accountName + | ||
context.resources.getString(string.meta_data_owner_seperator) + | ||
serverHost | ||
} | ||
|
||
@JvmStatic | ||
fun getDuration(duration: Long?): String { | ||
return DateUtils.formatElapsedTime(duration!!) | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters