52 lines
2.8 KiB
Python
52 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
import wx
|
|
import application
|
|
|
|
def no_data_entered():
|
|
return wx.MessageDialog(None, _("You must provide Both user and password."), _("Information needed"), wx.ICON_ERROR).ShowModal()
|
|
|
|
def no_update_available():
|
|
return wx.MessageDialog(None, _("Your {0} version is up to date").format(application.name,), _("Update"), style=wx.OK).ShowModal()
|
|
|
|
def remove_buffer():
|
|
return wx.MessageDialog(None, _("Do you really want to dismiss this buffer?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
|
|
|
|
def no_user_exist():
|
|
wx.MessageDialog(None, _("This user does not exist"), _("Error"), style=wx.ICON_ERROR).ShowModal()
|
|
|
|
def show_error_code(code):
|
|
title = ""
|
|
message = ""
|
|
if code == 201:
|
|
title = _("Restricted access")
|
|
message = _("Access to user's audio is denied by the owner. Error code {0}").format(code,)
|
|
return wx.MessageDialog(None, message, title, style=wx.ICON_ERROR).ShowModal()
|
|
|
|
def bad_authorisation():
|
|
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()
|
|
|
|
def no_audio_albums():
|
|
return wx.MessageDialog(None, _("You do not have audio albums."), _("Error"), style=wx.ICON_ERROR).ShowModal()
|
|
|
|
def no_video_albums():
|
|
return wx.MessageDialog(None, _("You do not have video albums."), _("Error"), style=wx.ICON_ERROR).ShowModal()
|
|
|
|
def delete_audio_album():
|
|
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()
|
|
|
|
def updated_status():
|
|
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()
|
|
|
|
def join_group():
|
|
return wx.MessageDialog(None, _("If you like socializer, you can join or community from where you can ask for help, give us your feedback and help other users of the application. New releases are posted in the group too. Would you like to join the Socializer community?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
|
|
|
|
def group_joined():
|
|
return wx.MessageDialog(None, _("You have joined the Socializer community."), _("Success")).ShowModal()
|
|
|
|
def proxy_question():
|
|
return wx.MessageDialog(None, _("If you live in a country where VK is blocked, you can use a proxy to bypass such restrictions. Socializer includes a working proxy to ensure all users can connect to VK. Do you want to use Socializer through the proxy?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
|