示例#1
0
def ask_for_resume(resume_position):
    """Ask the user for resuming a video"""
    return xbmcgui.Dialog().contextmenu([
        common.get_local_string(12022).format(
            common.convert_seconds_to_hms_str(resume_position)),
        common.get_local_string(12023)
    ])
示例#2
0
def ask_for_resume(resume_position):
    """Ask the user for resuming a video"""
    return xbmcgui.Dialog().contextmenu(
        [
            common.get_local_string(12022).format(common.convert_seconds_to_hms_str(resume_position)),
            common.get_local_string(12023 if g.KODI_VERSION.is_major_ver('18') else 12021)
        ])