2016-02-13 17:06:36 -06:00
# -*- coding: utf-8 -*-
2019-01-02 04:42:53 +03:00
from __future__ import unicode_literals
2016-02-13 17:06:36 -06:00
import wx
import application
def no_data_entered ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " You must provide Both user and password. " ) , _ ( " Information needed " ) , wx . ICON_ERROR ) . ShowModal ( )
2016-02-13 17:06:36 -06:00
def no_update_available ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " Your {0} version is up to date " ) . format ( application . name , ) , _ ( " Update " ) , style = wx . OK ) . ShowModal ( )
2016-03-27 00:11:52 -06:00
def remove_buffer ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " Do you really want to dismiss this buffer? " ) , _ ( " Attention " ) , style = wx . ICON_QUESTION | wx . YES_NO ) . ShowModal ( )
2016-04-12 15:59:22 -05:00
def no_user_exist ( ) :
2019-01-02 04:42:53 +03:00
wx . MessageDialog ( None , _ ( " This user does not exist " ) , _ ( " Error " ) , style = wx . ICON_ERROR ) . ShowModal ( )
2016-04-13 17:45:05 -05:00
def show_error_code ( code ) :
title = " "
message = " "
if code == 201 :
2019-01-02 04:42:53 +03:00
title = _ ( " Restricted access " )
message = _ ( " Access to user ' s audio is denied by the owner. Error code {0} " ) . format ( code , )
2016-06-06 03:53:55 -05:00
return wx . MessageDialog ( None , message , title , style = wx . ICON_ERROR ) . ShowModal ( )
def bad_authorisation ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " authorisation failed. Your configuration will not be saved. Please close and open again the application for authorising your account. Make sure you have typed your credentials correctly. " ) , _ ( " Error " ) , style = wx . ICON_ERROR ) . ShowModal ( )
2016-06-28 22:32:32 -05:00
2018-12-18 05:32:41 -06:00
def no_audio_albums ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " You do not have audio albums to add tis file. " ) , _ ( " Error " ) , style = wx . ICON_ERROR ) . ShowModal ( )
2018-12-18 05:32:41 -06:00
def no_video_albums ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " You do not have video albums to add tis file. " ) , _ ( " Error " ) , style = wx . ICON_ERROR ) . ShowModal ( )
2018-12-18 05:32:41 -06:00
2016-06-28 22:32:32 -05:00
def delete_audio_album ( ) :
2019-01-02 04:42:53 +03:00
return wx . MessageDialog ( None , _ ( " Do you really want to delete this Album? this will be deleted from VK too. " ) , _ ( " Attention " ) , style = wx . ICON_QUESTION | wx . YES_NO ) . ShowModal ( )
2018-12-18 16:32:14 -06:00
def updated_status ( ) :
2019-01-03 13:40:11 -06:00
return wx . MessageDialog ( None , _ ( " Your status message has been successfully updated. " ) , _ ( " Success " ) ) . ShowModal ( )
def remove_post ( ) :
return wx . MessageDialog ( None , _ ( " Do you really want to delete this post? " ) , _ ( " Attention " ) , style = wx . ICON_QUESTION | wx . YES_NO ) . ShowModal ( )