1
0
Fork 0
mirror of https://github.com/Athemis/PyDSF.git synced 2025-04-06 06:56:04 +00:00

Fix translatability of certain strings

Strings that are built using .format() are not properely recognized.
Using workaround for now.
This commit is contained in:
Alexander Minges 2015-07-08 14:58:10 +02:00
parent e1b0edd292
commit 6250864ead

View file

@ -32,6 +32,13 @@ try:
except ImportError: except ImportError:
raise ImportError('----- SciPy must be installed. -----') raise ImportError('----- SciPy must be installed. -----')
try:
from PyQt5.QtCore import QCoreApplication
except:
raise ImportError('----- PyQt5 must be installed -----')
_translate = QCoreApplication.translate
class Well: class Well:
""" """
@ -625,15 +632,16 @@ class PlotResults():
linewidths=(1.5, )) linewidths=(1.5, ))
ax1.invert_yaxis() # invert y axis to math plate layout ax1.invert_yaxis() # invert y axis to math plate layout
cbar = fig1.colorbar(cax) # show colorbar cbar = fig1.colorbar(cax) # show colorbar
ax1.set_xlabel('Columns') # set axis and colorbar label ax1.set_xlabel(_translate('pydsf',
ax1.set_ylabel('Rows') 'Columns')) # set axis and colorbar label
ax1.set_ylabel(_translate('pydsf', 'Rows'))
if str(plate.id) == 'average': if str(plate.id) == 'average':
title = '$T_m$ heatmap (average)' title = _translate('pydsf', '$T_m$ heatmap (')
else: else:
title = '$T_m$ heatmap (plate #{})'.format(str(plate.id)) title = _translate('pydsf', '$T_m$ heatmap (plate #')
ax1.set_title(title) ax1.set_title(title + str(plate.id) + ')')
cbar.set_label(u"Temperature [°C]") cbar.set_label(_translate('pydsf', u"Temperature [°C]"))
canvas.draw() canvas.draw()
@ -645,8 +653,8 @@ class PlotResults():
canvas.clear() canvas.clear()
fig = canvas.fig # new figure fig = canvas.fig # new figure
# set title # set title
fig.suptitle( title = _translate('pydsf', "Individual Derivatives (plate #")
'Individual Derivatives (plate #{})'.format(str(plate.id))) fig.suptitle(title + str(plate.id) + ')')
grid = mpl_toolkits.axes_grid1.Grid( grid = mpl_toolkits.axes_grid1.Grid(
fig, 111, fig, 111,
@ -705,7 +713,8 @@ class PlotResults():
canvas.clear() canvas.clear()
fig = canvas.fig fig = canvas.fig
fig.suptitle('Raw Data (plate #{})'.format(str(plate.id))) title = _translate('pydsf', "Raw Data (plate #")
fig.suptitle(title + str(plate.id) + ')')
grid = mpl_toolkits.axes_grid1.Grid( grid = mpl_toolkits.axes_grid1.Grid(
fig, 111, fig, 111,