Skip to content
Snippets Groups Projects
Commit 42ea3c65 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

strings.xml: added missing string

parent 84208a3f
No related branches found
No related tags found
No related merge requests found
......@@ -169,6 +169,7 @@ as that of the covered work.
<!-- Call Actions -->
<string name="action_call_attended_transfer">Attended Transfer</string>
<string name="action_call_unattended_transfer">Unattended transfer</string>
<string name="action_call_general_transfer">Transfer</string>
<string name="action_call_conference">Conference</string>
<string name="action_call_hold">Hold</string>
<string name="action_call_unhold">Unhold</string>
......
......@@ -343,8 +343,8 @@ public class BubblesView extends SurfaceView implements SurfaceHolder.Callback,
canvas.drawText(first_plan.associated_call.getContact().getmDisplayName(), first_plan.getPosX(),
(float) (first_plan.getPosY() - first_plan.getRetractedRadius() * 1.2 * density), getNamePaint(first_plan));
canvas.drawText("Transfer", first_plan.getPosX(), (float) (first_plan.getPosY() + first_plan.getRetractedRadius() * 1.5
* density), getNamePaint(first_plan));
canvas.drawText(getResources().getString(R.string.action_call_general_transfer), first_plan.getPosX(),
(float) (first_plan.getPosY() + first_plan.getRetractedRadius() * 1.5 * density), getNamePaint(first_plan));
canvas.drawText(getResources().getString(first_plan.getHoldStatus()),
(float) (first_plan.getPosX() - first_plan.getRetractedRadius() * 1.5 * density - 15), first_plan.getPosY(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment